Some checks failed
Release / Release Go Binary (arm64, darwin) (push) Has been cancelled
Release / Release Go Binary (amd64, darwin) (push) Has been cancelled
Release / Release Go Binary (amd64, linux) (push) Has been cancelled
Release / Release Go Binary (amd64, windows) (push) Has been cancelled
Release / Release Go Binary (arm64, linux) (push) Has been cancelled
27 lines
679 B
Nix
27 lines
679 B
Nix
{
|
|
description = "Docker Pod v0.2.0-1";
|
|
|
|
inputs = {
|
|
platform-engineering = {
|
|
url = "github:slimslenderslacks/nix-modules";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
|
};
|
|
|
|
outputs = { nixpkgs, ... }@inputs:
|
|
inputs.platform-engineering.golang-project
|
|
{
|
|
inherit nixpkgs;
|
|
dir = ./.;
|
|
name = "babashka-pod-docker";
|
|
version = "0.2.0";
|
|
package-overlay = pkgs: packages:
|
|
packages // {
|
|
default = pkgs.writeShellScriptBin "entrypoint" ''
|
|
${packages.app}/bin/babashka-pod-docker
|
|
'';
|
|
};
|
|
};
|
|
}
|