diff options
| author | sefidel <contact@sefidel.net> | 2026-08-25 12:24:56 +1000 |
|---|---|---|
| committer | sefidel <contact@sefidel.net> | 2026-08-25 12:24:56 +1000 |
| commit | b145e6319204cc72327c8755cf46045e3f01b530 (patch) | |
| tree | d110f873779b9ac04430f44245dc82081280d2c5 /pkgs/rz-pm.nix | |
| parent | 6b20cbd2ef225100a05c174f806df385c875f33b (diff) | |
| download | nixpkgs-exotic-b145e6319204cc72327c8755cf46045e3f01b530.zip | |
rz-pm: init at 0.3.6
Diffstat (limited to 'pkgs/rz-pm.nix')
| -rw-r--r-- | pkgs/rz-pm.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/rz-pm.nix b/pkgs/rz-pm.nix new file mode 100644 index 0000000..6f1a688 --- /dev/null +++ b/pkgs/rz-pm.nix @@ -0,0 +1,23 @@ +{ lib, buildGoModule, fetchFromGitHub, rizin, git }: + +buildGoModule rec { + pname = "rz-pm"; + version = "0.3.6"; + + src = fetchFromGitHub { + owner = "rizinorg"; + repo = "rz-pm"; + rev = "v${version}"; + sha256 = "sha256-2w4T87rAv6WQXSCgOz9AktG8+qjMHD97UXQh5IzYC00="; + }; + + nativeBuildInputs = [ rizin git ]; + + vendorHash = null; + + meta = with lib; { + description = "An official Rizin package manager"; + homepage = "https://github.com/rizinorg/rz-pm"; + license = licenses.lgpl3Only; + }; +} |
