anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / text / amber / default.nix
blobce8243770b04ab933736f22d0f680066082d7aed
1 { lib, stdenv, fetchFromGitHub, rustPlatform
2 , libiconv, Security
3 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "amber";
7   version = "0.6.0";
9   src = fetchFromGitHub {
10     owner = "dalance";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "sha256-q0o2PQngbDLumck27V0bIiB35zesn55Y+MwK2GjNVWo=";
14   };
16   cargoHash = "sha256-nBSgP30Izskq9RbhVIyqWzZgG5ZWHVdiukldw+Q0rco=";
18   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ];
20   meta = with lib; {
21     description = "Code search-and-replace tool";
22     homepage = "https://github.com/dalance/amber";
23     license = with licenses; [ mit ];
24     maintainers = [ maintainers.bdesham ];
25   };