3238e9f2e0
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
27 lines
667 B
Nix
27 lines
667 B
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform
|
|
, libiconv, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "amber";
|
|
version = "0.5.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dalance";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mmgJCD7kJjvpxyagsoe5CSzqIEZcIiYMAMP3axRphv4=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-opRinhTmhZxpAwHNiVOLXL8boQf09Y1NXrWQ6HWQYQ0=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
meta = with lib; {
|
|
description = "A code search-and-replace tool";
|
|
homepage = "https://github.com/dalance/amber";
|
|
license = with licenses; [ mit ];
|
|
maintainers = [ maintainers.bdesham ];
|
|
};
|
|
}
|