Merge pull request #91196 from jduan/jduan--add-fastmod
fastmod: init at 0.4.0
This commit is contained in:
commit
734f1dea8b
@ -3536,6 +3536,12 @@
|
|||||||
githubId = 117874;
|
githubId = 117874;
|
||||||
name = "Jeroen de Haas";
|
name = "Jeroen de Haas";
|
||||||
};
|
};
|
||||||
|
jduan = {
|
||||||
|
name = "Jingjing Duan";
|
||||||
|
email = "duanjingjing@gmail.com";
|
||||||
|
github = "jduan";
|
||||||
|
githubId = 452450;
|
||||||
|
};
|
||||||
jefdaj = {
|
jefdaj = {
|
||||||
email = "jefdaj@gmail.com";
|
email = "jefdaj@gmail.com";
|
||||||
github = "jefdaj";
|
github = "jefdaj";
|
||||||
|
29
pkgs/tools/text/fastmod/default.nix
Normal file
29
pkgs/tools/text/fastmod/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "fastmod";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "facebookincubator";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0089a17h0wgan3fs6x1la35lzjs1pib7p81wqkh3zcwvx8ffa8z8";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "02nkxjwfiljndmi0pv98chfsw9vmjzgmp5r14mchpayp4943qk9m";
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -955,6 +955,10 @@ in
|
|||||||
|
|
||||||
libfx2 = with python3Packages; toPythonApplication fx2;
|
libfx2 = with python3Packages; toPythonApplication fx2;
|
||||||
|
|
||||||
|
fastmod = callPackage ../tools/text/fastmod {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
fitnesstrax = callPackage ../applications/misc/fitnesstrax/default.nix { };
|
fitnesstrax = callPackage ../applications/misc/fitnesstrax/default.nix { };
|
||||||
|
|
||||||
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
||||||
|
Loading…
Reference in New Issue
Block a user