mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
35 lines
885 B
Nix
35 lines
885 B
Nix
{ stdenv, lib, fetchFromGitHub, buildGoModule
|
|
, makeWrapper, git
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mycorrhiza";
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bouncepaw";
|
|
repo = "mycorrhiza";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+8cW7xNr4gzNHQ/hBpASoe9g7W/QFQhtO/dZ9umgJec=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-foAjMPvNJnjpxRAXEgNeYuvDAoBdMwiQc9BiNxifzUc=";
|
|
|
|
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;
|
|
};
|
|
}
|