peach: init at 0.9.8

This commit is contained in:
IvarWithoutBones 2020-12-01 04:47:19 +01:00
parent a87ab948d2
commit f2341a3054
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "peach";
version = "0.9.8";
src = fetchFromGitHub {
owner = "peachdocs";
repo = "peach";
rev = "v${version}";
sha256 = "1pzk3sah39hz8n1kswxl35djh6wm0qcfcwrbfi50nd4k3bdgz7xl";
};
vendorSha256 = "0f215hd5a9d4fyvdirp2j14ghap5vwv12i28jmzm6wxjihj8nn1g";
meta = with lib; {
description = "Web server for multi-language, real-time synchronization and searchable documentation";
homepage = "https://peachdocs.org/";
license = licenses.asl20;
maintainers = [ maintainers.ivar ];
};
}

View file

@ -23161,6 +23161,8 @@ in
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav;
};
peach = callPackage ../servers/peach { };
peaclock = callPackage ../applications/misc/peaclock {
stdenv = gccStdenv;
};