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