Files

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

28 lines
616 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildGoModule,
lib,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "codeowners";
version = "1.2.1";
src = fetchFromGitHub {
owner = "hmarr";
repo = "codeowners";
rev = "v${version}";
hash = "sha256-PMT3ihxCD4TNgTZOD4KB9Od1djIhnlMa8zuD6t1OieU=";
};
vendorHash = "sha256-CpGlw4xe+gg2IRov9Atd8Z7XbXs1zkIYxvBVpsY/gxg=";
meta = with lib; {
description = "CLI and Go library for Github's CODEOWNERS file";
mainProgram = "codeowners";
homepage = "https://github.com/hmarr/codeowners";
license = licenses.mit;
maintainers = with maintainers; [ yorickvp ];
};
}