mycorrhiza: init at 1.5.0

This commit is contained in:
Mikhail Chekan 2021-10-11 10:41:57 +08:00
parent efd3f5dc2c
commit bc4121418d
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, lib, fetchFromGitHub, buildGoModule
, makeWrapper, git
}:
buildGoModule rec {
pname = "mycorrhiza";
version = "1.5.0";
src = fetchFromGitHub {
owner = "bouncepaw";
repo = "mycorrhiza";
rev = "v${version}";
sha256 = "0manay7gfybzk28dp9a8xdfpbhxm1dbnvcyp4mjhh449n8jlp4bq";
};
vendorSha256 = "1br1p8cnyv2xpwnld3ydd87zxbdwl962f6yww8i8xbsm7881bl0d";
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;
};
}

View file

@ -20551,6 +20551,8 @@ with pkgs;
mumsi = callPackage ../servers/mumsi { };
mycorrhiza = callPackage ../servers/mycorrhiza { };
myserver = callPackage ../servers/http/myserver { };
nas = callPackage ../servers/nas { };