2021-10-11 02:41:57 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, buildGoModule
|
|
|
|
, makeWrapper, git
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "mycorrhiza";
|
2022-11-06 03:38:45 +00:00
|
|
|
version = "1.13.0";
|
2021-10-11 02:41:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bouncepaw";
|
|
|
|
repo = "mycorrhiza";
|
|
|
|
rev = "v${version}";
|
2022-11-06 03:38:45 +00:00
|
|
|
sha256 = "sha256-zRDMfHjR1obagRItdlmO1fJnutMM8MqcKNc3ZjtuvnY=";
|
2021-10-11 02:41:57 +00:00
|
|
|
};
|
|
|
|
|
2022-09-05 18:48:40 +00:00
|
|
|
vendorSha256 = "sha256-Z6pQwUMMgHLMrRN4Fpu1QyG7WCHGWuvBc2UBTY6jncU=";
|
2021-10-11 02:41:57 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/mycorrhiza \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ git ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Filesystem and git-based wiki engine written in Go using mycomarkup as its primary markup language";
|
|
|
|
homepage = "https://github.com/bouncepaw/mycorrhiza";
|
|
|
|
license = licenses.agpl3Only;
|
|
|
|
maintainers = with maintainers; [ chekoopa ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|