kitchen/kitchen.nix

16 lines
512 B
Nix
Raw Normal View History

2021-12-31 13:30:27 -05:00
{nixpkgs, gitignoreSrc}:
with nixpkgs;
2022-02-19 17:58:58 -05:00
nixpkgs.stdenv.mkDerivation rec {
name = "kitchen";
src = fetchurl {
2022-02-19 18:23:36 -05:00
url = "https://github.com/zaphar/kitchen/releases/download/v0.2.0-nix/kitchen-linux";
2022-02-19 17:58:58 -05:00
sha256 = "1f1lxw893r6afgkhizvhm4pg20qfw3kwf9kbzmkbcw0d21qsd9z2";
};
phases = ["installPhase" "patchPhase"];
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/kitchen
chmod u+x $out/bin/kitchen
'';
2021-12-31 13:30:27 -05:00
}