biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / codeowners / default.nix
blob3a92def28895d3f59128c8866708118ef11e5425
1 { buildGoModule, lib, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "codeowners";
5   version = "1.1.2";
7   src = fetchFromGitHub {
8     owner = "hmarr";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-bjSlt439Y5hmbxR6s4J37ao+P2tuKNuwqRg872P+MUg=";
12   };
14   vendorHash = "sha256-G+oaX3SXsHJu3lq6n8dLmoRXDAYcFkrYarwePB/MdEU=";
16   meta = with lib; {
17     description = "A CLI and Go library for Github's CODEOWNERS file";
18     mainProgram = "codeowners";
19     homepage = "https://github.com/hmarr/codeowners";
20     license = licenses.mit;
21     maintainers = with maintainers; [ yorickvp ];
22   };