git-who: init at 0.6

h

reformat
This commit is contained in:
mcpar-land
2025-03-19 13:36:32 -04:00
parent 9cb2b9a4eb
commit 3f3be8e735
+28
View File
@@ -0,0 +1,28 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "git-who";
version = "0.6";
src = fetchFromGitHub {
owner = "sinclairtarget";
repo = "git-who";
rev = "v${version}";
hash = "sha256-/MCvFmZNEVnSrSezTiwH3uWPbh/a7mVxmKduc63E3LA=";
};
vendorHash = "sha256-VdQw0mBCALeQfPMjQ4tp3DcLAzmHvW139/COIXSRT0s=";
# some automated tests require submodule to clone and will fail.
# see project readme
doCheck = false;
meta = {
description = "Git blame for file trees";
homepage = "https://github.com/sinclairtarget/git-who";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mcparland ];
};
}