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

29 lines
702 B
Nix
Raw Normal View History

{ lib, stdenv
2020-06-20 20:05:11 +00:00
, fetchFromGitHub
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "fastmod";
2020-10-18 04:40:20 +00:00
version = "0.4.1";
2020-06-20 20:05:11 +00:00
src = fetchFromGitHub {
owner = "facebookincubator";
repo = pname;
rev = "v${version}";
2020-10-18 04:40:20 +00:00
sha256 = "0nrh6h5imbpl7i0sqqm16x9ggazww5739vng1ay1v6sgbbs0a095";
2020-06-20 20:05:11 +00:00
};
2020-10-18 04:40:20 +00:00
cargoSha256 = "18bspi59vfnqijxgipmv2h6h5iy7qynpk1ph46yhjsnndjlxxcba";
2020-06-20 20:05:11 +00:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
2020-06-20 20:05:11 +00:00
meta = with lib; {
2020-06-20 20:05:11 +00:00
description = "A utility that makes sweeping changes to large, shared code bases";
homepage = "https://github.com/facebookincubator/fastmod";
license = licenses.asl20;
maintainers = with maintainers; [ jduan ];
};
}