nixpkgs/pkgs/development/tools/codeowners/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
604 B
Nix
Raw Normal View History

2022-06-03 16:53:31 +03:00
{ buildGoModule, lib, fetchFromGitHub }:
buildGoModule rec {
pname = "codeowners";
2023-02-07 16:29:43 +03:00
version = "1.1.2";
2022-06-03 16:53:31 +03:00
src = fetchFromGitHub {
owner = "hmarr";
repo = pname;
rev = "v${version}";
2023-02-07 16:29:43 +03:00
hash = "sha256-bjSlt439Y5hmbxR6s4J37ao+P2tuKNuwqRg872P+MUg=";
2022-06-03 16:53:31 +03:00
};
2023-02-07 16:29:43 +03:00
vendorHash = "sha256-G+oaX3SXsHJu3lq6n8dLmoRXDAYcFkrYarwePB/MdEU=";
2022-06-03 16:53:31 +03:00
meta = with lib; {
description = "A CLI and Go library for Github's CODEOWNERS file";
mainProgram = "codeowners";
2022-06-03 16:53:31 +03:00
homepage = "https://github.com/hmarr/codeowners";
license = licenses.mit;
maintainers = with maintainers; [ yorickvp ];
};
}