forked from mirrors/nixpkgs
peach: init at 0.9.8
This commit is contained in:
parent
a87ab948d2
commit
f2341a3054
22
pkgs/servers/peach/default.nix
Normal file
22
pkgs/servers/peach/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -23161,6 +23161,8 @@ in
|
||||||
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav;
|
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
peach = callPackage ../servers/peach { };
|
||||||
|
|
||||||
peaclock = callPackage ../applications/misc/peaclock {
|
peaclock = callPackage ../applications/misc/peaclock {
|
||||||
stdenv = gccStdenv;
|
stdenv = gccStdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue