mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Merge pull request #176112 from yorickvP/codeowners
codeowners: init at 0.4.0
This commit is contained in:
commit
1e41c53cf7
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 ];
|
||||
};
|
||||
}
|
@ -21669,6 +21669,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