nixpkgs/pkgs/servers/mycorrhiza/default.nix

35 lines
887 B
Nix
Raw Normal View History

2021-10-11 04:41:57 +02:00
{ stdenv, lib, fetchFromGitHub, buildGoModule
, makeWrapper, git
}:
buildGoModule rec {
pname = "mycorrhiza";
2021-12-07 09:05:25 +01:00
version = "1.7.0";
2021-10-11 04:41:57 +02:00
src = fetchFromGitHub {
owner = "bouncepaw";
repo = "mycorrhiza";
rev = "v${version}";
2021-12-07 09:05:25 +01:00
sha256 = "1dd18n9lq4wxz7kn1szavigw9098r7rcwz9j53q92mx100fa42q6";
2021-10-11 04:41:57 +02:00
};
2021-12-07 09:05:25 +01:00
vendorSha256 = "1s7n0lk3cr4lkay3plvlqfpx2gh03n2afb43gv9lmwljbry9zbss";
2021-10-11 04:41:57 +02: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;
};
}