2023-04-18 09:42:28 -07:00
|
|
|
{
|
|
|
|
|
description = "Docker Pod";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
2023-06-20 18:13:51 -07:00
|
|
|
platform-engineering.url = "github:slimslenderslacks/nix-modules";
|
2023-04-18 09:42:28 -07:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-20 18:13:51 -07:00
|
|
|
outputs = { nixpkgs, ... }@inputs:
|
|
|
|
|
inputs.platform-engineering.golang-project
|
2023-04-18 09:42:28 -07:00
|
|
|
{
|
2023-06-20 18:13:51 -07:00
|
|
|
inherit nixpkgs;
|
|
|
|
|
dir = ./.;
|
2023-06-29 12:56:53 -07:00
|
|
|
name = "babashka-pod-docker";
|
2023-08-09 22:44:11 -07:00
|
|
|
version = "0.2.0";
|
2023-08-08 17:40:26 -07:00
|
|
|
package-overlay = pkgs: packages:
|
2023-06-29 12:56:53 -07:00
|
|
|
packages // {
|
|
|
|
|
default = pkgs.writeShellScriptBin "entrypoint" ''
|
|
|
|
|
${packages.app}/bin/babashka-pod-docker
|
|
|
|
|
'';
|
|
|
|
|
};
|
2023-06-20 18:13:51 -07:00
|
|
|
};
|
2023-04-18 09:42:28 -07:00
|
|
|
}
|