linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / fastmod / default.nix
blobba2bedd5eacc29ef3da1a990e98b43649e7f2dcb
1 { lib, stdenv
2 , fetchFromGitHub
3 , rustPlatform
4 , Security
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "fastmod";
9   version = "0.4.1";
11   src = fetchFromGitHub {
12     owner = "facebookincubator";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "0nrh6h5imbpl7i0sqqm16x9ggazww5739vng1ay1v6sgbbs0a095";
16   };
18   cargoSha256 = "18bspi59vfnqijxgipmv2h6h5iy7qynpk1ph46yhjsnndjlxxcba";
20   buildInputs = lib.optional stdenv.isDarwin Security;
22   meta = with lib; {
23     description = "A utility that makes sweeping changes to large, shared code bases";
24     homepage = "https://github.com/facebookincubator/fastmod";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ jduan ];
27   };