syncthingtray: 1.6.3 -> 1.6.4 (#364825)
[NixPkgs.git] / pkgs / tools / text / amber / default.nix
blob67deb89c3936d6ebcb7ebdc70d1655ad9d0a8f43
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   rustPlatform,
6   libiconv,
7   Security,
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "amber";
12   version = "0.6.0";
14   src = fetchFromGitHub {
15     owner = "dalance";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "sha256-q0o2PQngbDLumck27V0bIiB35zesn55Y+MwK2GjNVWo=";
19   };
21   cargoHash = "sha256-nBSgP30Izskq9RbhVIyqWzZgG5ZWHVdiukldw+Q0rco=";
23   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
24     libiconv
25     Security
26   ];
28   meta = with lib; {
29     description = "Code search-and-replace tool";
30     homepage = "https://github.com/dalance/amber";
31     license = with licenses; [ mit ];
32     maintainers = [ maintainers.bdesham ];
33   };