nixos/nil_cli.nix

19 lines
464 B
Nix
Raw Normal View History

2024-07-08 19:36:39 +00:00
{ lib, stdenv, fetchFromGitHub, fetchurl }:
stdenv.mkDerivation rec {
pname = "nil_cli";
version = "2024.07.02";
src = fetchurl {
url = "https://github.com/NilFoundation/nil_cli/releases/download/2024.07.04/nil_cli-linux-x64";
sha256 = "sha256-j0CL2cgeeKejGapYMZwRdIKqmj5BVLy8D2SuPl0H5kM=";
};
phases = ["installPhase" "patchPhase"];
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/nil_cli
chmod +x $out/bin/nil_cli
'';
}