Updated nix-modules

This commit is contained in:
Jim Clark
2023-06-29 12:56:53 -07:00
parent c7a74b1853
commit 9c22bf43e4
2 changed files with 14 additions and 6 deletions

View File

@@ -11,5 +11,13 @@
{
inherit nixpkgs;
dir = ./.;
name = "babashka-pod-docker";
version = "0.0.1";
custom-packages = pkgs: packages:
packages // {
default = pkgs.writeShellScriptBin "entrypoint" ''
${packages.app}/bin/babashka-pod-docker
'';
};
};
}