gitAndTools.rs-git-fsmonitor: init at 0.1.3 (#96574)

gstqt5
Sandro 2020-09-10 13:09:33 +02:00 committed by GitHub
parent ceb3acfa8b
commit 6623aac946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

@ -211,6 +211,8 @@ let
qgit = qt5.callPackage ./qgit { };
rs-git-fsmonitor = callPackage ./rs-git-fsmonitor { };
scmpuff = callPackage ./scmpuff { };
stgit = callPackage ./stgit { };

View File

@ -0,0 +1,33 @@
{ lib
, fetchFromGitHub
, rustPlatform
, makeWrapper
, watchman
}:
rustPlatform.buildRustPackage rec {
pname = "rs-git-fsmonitor";
version = "0.1.3";
src = fetchFromGitHub {
owner = "jgavris";
repo = pname;
rev = "v${version}";
sha256 = "021vdk5i7yyrnh4apn0gnsh6ycnx15wm3g2jrfsg7fycnq8167wc";
};
cargoSha256 = "0kfj09xq1g866507k3gcbm30pyi1xzfr7gca6dab7sjlvf83h9xs";
nativeBuildInputs = [ makeWrapper ];
fixupPhase = ''
wrapProgram $out/bin/rs-git-fsmonitor --prefix PATH ":" "${lib.makeBinPath [ watchman ]}" ;
'';
meta = with lib; {
description = "A fast git core.fsmonitor hook written in Rust";
homepage = "https://github.com/jgavris/rs-git-fsmonitor";
license = licenses.mit;
maintainers = [ maintainers.SuperSandro2000 ];
};
}