This commit is contained in:
Joe Frikker
2025-12-20 22:03:45 -05:00
parent 6197a361ce
commit 5fe8b45672
2 changed files with 55 additions and 0 deletions

19
kube.nix Normal file
View File

@@ -0,0 +1,19 @@
{
rustPlatform,
lib
}:
rustPlatform.buildRustPackage {
name = "kube";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./src
./Cargo.toml
./Cargo.lock
];
};
cargoLock.lockFile = ./Cargo.lock;
auditable = false;
meta.mainProgram = "kube";
}