blob: f8cc3055e90515e5866d4efc6514e246e2c1b7ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, libiconv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "fastmod";
version = "0.4.4";
src = fetchFromGitHub {
owner = "facebookincubator";
repo = pname;
rev = "v${version}";
sha256 = "sha256-A/3vzfwaStoQ9gdNM8yjmL2J/pQjj6yb68WThiTF+1E=";
};
cargoHash = "sha256-sFrABp4oYhel+GONFsTbunq+4We2DicvF9A3FT/ZArc=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ];
meta = with lib; {
description = "Utility that makes sweeping changes to large, shared code bases";
mainProgram = "fastmod";
homepage = "https://github.com/facebookincubator/fastmod";
license = licenses.asl20;
maintainers = with maintainers; [ jduan ];
};
}
|