34 lines
885 B
Nix
34 lines
885 B
Nix
{ stdenv, lib, fetchFromGitHub, buildGoModule
|
|
, makeWrapper, git
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mycorrhiza";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bouncepaw";
|
|
repo = "mycorrhiza";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-81Ok/0cDkFqKEAwWtpxM3InMfu0R9rZJzQ41AhWuVuo=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-9FMxj3AkbKyUMZWj1S0myoKem4mupOHPIfxNHjYk8mU=";
|
|
|
|
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;
|
|
};
|
|
}
|