ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
24 lines
616 B
Nix
24 lines
616 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lefthook";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "evilmartians";
|
|
repo = "lefthook";
|
|
sha256 = "sha256-uaIZrxfzV2WPvnAPm6Q67yKx1EVmSMcChSxZG/Huw48=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-LCBQyVSkUywceIlioYRNuRc6FrbPKuhgfw5OocR3NvI=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|