nixpkgs/pkgs/tools/text/amber/default.nix

27 lines
645 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform
2019-05-01 22:30:13 +01:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "amber";
2020-11-25 21:37:04 +00:00
version = "0.5.8";
2019-05-01 22:30:13 +01:00
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
2020-11-25 21:37:04 +00:00
sha256 = "0j9h9zzg6n4mhq2bqj71k5db595ilbgd9dn6ygmzsm74619q4454";
2019-05-01 22:30:13 +01:00
};
2020-11-25 21:37:04 +00:00
cargoSha256 = "0h47xqqq8f8m28rl1s6r305cf3dvk94aa86j6m0rk535i2jqfvhp";
2019-05-01 22:30:13 +01:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
2019-05-01 22:30:13 +01:00
meta = with lib; {
2019-05-01 22:30:13 +01:00
description = "A code search-and-replace tool";
2020-04-11 19:21:27 +01:00
homepage = "https://github.com/dalance/amber";
2019-05-01 22:30:13 +01:00
license = with licenses; [ mit ];
maintainers = [ maintainers.bdesham ];
};
}