husky: init at 8.0.3
This commit is contained in:
parent
75b4d0ff2b
commit
c083a76b4b
23
pkgs/development/tools/misc/husky/default.nix
Normal file
23
pkgs/development/tools/misc/husky/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildNpmPackage, fetchFromGitHub }:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "husky";
|
||||
version = "8.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "typicode";
|
||||
repo = "husky";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-KoF2+vikgFyCGjfKeaqkC720UVMuvCIn9ApDPKbudsA=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-u1dndTKvInobva+71yI2vPiwrW9vqzAJ2sDAqT9YJsg=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Git hooks made easy 🐶 woof!";
|
||||
homepage = "https://github.com/typicode/husky";
|
||||
changelog = "https://github.com/typicode/husky/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
};
|
||||
}
|
@ -31010,6 +31010,8 @@ with pkgs;
|
||||
|
||||
hushboard = python3.pkgs.callPackage ../applications/audio/hushboard { };
|
||||
|
||||
husky = callPackage ../development/tools/misc/husky { };
|
||||
|
||||
hydrogen = qt5.callPackage ../applications/audio/hydrogen { };
|
||||
hydrogen_0 = callPackage ../applications/audio/hydrogen/0.nix { }; # Old stable, has GMKit.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user