netboot.nix/pkgs/disko/scripts/create-release.nix
2024-12-29 21:35:58 -05:00

19 lines
254 B
Nix

{
lib,
writeShellApplication,
bash,
coreutils,
git,
nix-fast-build,
}:
writeShellApplication {
name = "create-release";
runtimeInputs = [
bash
git
coreutils
nix-fast-build
];
text = lib.readFile ./create-release.sh;
}