My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/servers/peach/default.nix

22 lines
594 B

{ 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 ];
};
}