{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / servers / mycorrhiza / default.nix
blob02f19ed08b75c90cf3cf02e7c54e2376a5394d70
1 { stdenv, lib, fetchFromGitHub, buildGoModule
2 , makeWrapper, git
3 }:
5 buildGoModule rec {
6   pname = "mycorrhiza";
7   version = "1.15.1";
9   src = fetchFromGitHub {
10     owner = "bouncepaw";
11     repo = "mycorrhiza";
12     rev = "v${version}";
13     sha256 = "sha256-Cgf2YtAatfKWxhe4xAqNRB4ktsGs3ONi5XqbjcZwzTw=";
14   };
16   vendorHash = "sha256-UQT6BvJT26NViZDyh6yokgW18ptMiGCSf7CgMqtD9Oc=";
18   subPackages = [ "." ];
20   nativeBuildInputs = [ makeWrapper ];
22   postInstall = ''
23     wrapProgram $out/bin/mycorrhiza \
24       --prefix PATH : ${lib.makeBinPath [ git ]}
25   '';
27   meta = with lib; {
28     description = "Filesystem and git-based wiki engine written in Go using mycomarkup as its primary markup language";
29     homepage = "https://github.com/bouncepaw/mycorrhiza";
30     license = licenses.agpl3Only;
31     maintainers = with maintainers; [ chekoopa ];
32     platforms = platforms.linux;
33     mainProgram = "mycorrhiza";
34   };