python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / codeowners / default.nix
blob2b17f00863b021526fb6abcb81421c6eb7e3db09
1 { buildGoModule, lib, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "codeowners";
5   version = "1.1.1";
7   src = fetchFromGitHub {
8     owner = "hmarr";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-lklKZCDX/e3MZ0ix3A4AIEICPoufBq7SAIULqDXOYDI=";
12   };
14   vendorSha256 = "sha256-G+oaX3SXsHJu3lq6n8dLmoRXDAYcFkrYarwePB/MdEU=";
16   meta = with lib; {
17     description = "A CLI and Go library for Github's CODEOWNERS file";
18     homepage = "https://github.com/hmarr/codeowners";
19     license = licenses.mit;
20     maintainers = with maintainers; [ yorickvp ];
21   };