aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix b/nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix
new file mode 100644
index 00000000000..607884b8ac9
--- /dev/null
+++ b/nixpkgs/pkgs/tools/nix/rnix-hashes/default.nix
@@ -0,0 +1,21 @@
+{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
+rustPlatform.buildRustPackage rec {
+ pname = "rnix-hashes";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "numtide";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "SzHyG5cEjaaPjTkn8puht6snjHMl8DtorOGDjxakJfA=";
+ };
+
+ cargoSha256 = "vaG+0t+XAckV9F4iIgcTkbIUurxdQsTCfOnRnrOKoRc=";
+
+ meta = with lib; {
+ description = "Nix Hash Converter";
+ homepage = "https://github.com/numtide/rnix-hashes";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ rizary ];
+ };
+}