mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 06:17:28 +00:00
codeowners: init at 0.4.0
This commit is contained in:
parent
968964fa8a
commit
9e9289f506
22
pkgs/development/tools/codeowners/default.nix
Normal file
22
pkgs/development/tools/codeowners/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildGoModule, lib, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "codeowners";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hmarr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-YhGBg7CP5usSyP3ksX3/54M9gCokK2No/fYANUTdJw0=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-no1x+g5MThhWw4eTfP33zoY8TyUtkt60FKsV2hTnYUU=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI and Go library for Github's CODEOWNERS file";
|
||||
homepage = "https://github.com/hmarr/codeowners";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ yorickvp ];
|
||||
};
|
||||
}
|
@ -21663,6 +21663,8 @@ with pkgs;
|
||||
|
||||
clickhouse-backup = callPackage ../development/tools/database/clickhouse-backup { };
|
||||
|
||||
codeowners = callPackage ../development/tools/codeowners { };
|
||||
|
||||
couchdb3 = callPackage ../servers/http/couchdb/3.nix {
|
||||
erlang = erlangR22;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user