codeowners: init at 0.4.0

This commit is contained in:
Yorick van Pelt 2022-06-03 15:53:31 +02:00
parent 968964fa8a
commit 9e9289f506
No known key found for this signature in database
GPG key ID: A36E70F9DC014A15
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -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;
};