flake.nix: add caveman-butcher

This commit is contained in:
Astro 2023-01-22 20:38:19 +01:00
parent 69b1285b03
commit 9ce4f5ad19
2 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,7 @@
members = [
"cave",
"hunter",
"butcher",
"gatherer",
"smokestack",
]

View File

@ -57,6 +57,14 @@
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl systemd ];
};
packages.caveman-butcher = naersk-lib.buildPackage rec {
pname = "caveman-butcher";
version = self.lastModifiedDate;
src = ./.;
targets = [ pname ];
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl systemd ];
};
packages.caveman-gatherer = naersk-lib.buildPackage rec {
pname = "caveman-gatherer";
version = self.lastModifiedDate;