ec2bee2404
Simon passed away in December 2021. Simon, it was a pleasure to work with you, to learn things together and to share good times. It ended too soon. You will be missed.
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, go-bindata, go-bindata-assetfs, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "documize-community";
|
|
version = "3.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "documize";
|
|
repo = "community";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Kv4BsFB08rkGRkePFIkjjuhK1TnLPS4m+PUlgKG5cTQ=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ go-bindata go-bindata-assetfs ];
|
|
|
|
# This is really weird, but they've managed to screw up
|
|
# their folder structure enough, you can only build by
|
|
# literally cding into this folder.
|
|
preBuild = "cd edition";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
passthru.tests = { inherit (nixosTests) documize; };
|
|
|
|
postInstall = ''
|
|
mv $out/bin/edition $out/bin/documize
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open source Confluence alternative for internal & external docs built with Golang + EmberJS";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ ];
|
|
mainProgram = "documize";
|
|
homepage = "https://www.documize.com/";
|
|
};
|
|
}
|