lefthook: init at 0.6.3 (#69233)

lefthook: init at 0.6.3
This commit is contained in:
Eric Ren 2019-09-22 14:18:08 -07:00 committed by Mario Rodas
parent ac6521cdc9
commit 696b36f928
3 changed files with 26 additions and 0 deletions

View File

@ -147,6 +147,8 @@ let
lab = callPackage ./lab { };
lefthook = callPackage ./lefthook { };
pre-commit = pkgs.python3Packages.toPythonApplication pkgs.python3Packages.pre-commit;
pass-git-helper = python3Packages.callPackage ./pass-git-helper { };

View File

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "lefthook";
version = "0.6.3";
src = fetchFromGitHub {
rev = "v${version}";
owner = "Arkweid";
repo = "lefthook";
sha256 = "01zvlw2yyxjg92d1qag1b42kc2kd68h4fmrv9y6ar7z0rw3p9a5d";
};
modSha256 = "0mjhw778x40c2plmjlkiry4rwvr9xkz65b88a61j86liv2plbmq2";
meta = with stdenv.lib; {
description = "Fast and powerful Git hooks manager for any type of projects";
homepage = "https://github.com/Arkweid/lefthook";
license = licenses.mit;
maintainers = with maintainers; [ rencire ];
};
}

View File

@ -4227,6 +4227,8 @@ in
lbreakout2 = callPackage ../games/lbreakout2 { };
lefthook = gitAndTools.lefthook;
lego = callPackage ../tools/admin/lego { };
leocad = callPackage ../applications/graphics/leocad { };