gitAndTools.rs-git-fsmonitor: init at 0.1.3 (#96574)
This commit is contained in:
parent
ceb3acfa8b
commit
6623aac946
@ -211,6 +211,8 @@ let
|
|||||||
|
|
||||||
qgit = qt5.callPackage ./qgit { };
|
qgit = qt5.callPackage ./qgit { };
|
||||||
|
|
||||||
|
rs-git-fsmonitor = callPackage ./rs-git-fsmonitor { };
|
||||||
|
|
||||||
scmpuff = callPackage ./scmpuff { };
|
scmpuff = callPackage ./scmpuff { };
|
||||||
|
|
||||||
stgit = callPackage ./stgit { };
|
stgit = callPackage ./stgit { };
|
||||||
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user