50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper
|
|
, git, coreutils, bash, gzip, openssh
|
|
, sqliteSupport ? true
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
buildGoPackage rec {
|
|
name = "gogs-${version}";
|
|
version = "0.11.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gogits";
|
|
repo = "gogs";
|
|
rev = "v${version}";
|
|
sha256 = "1xn1b4dxf7r8kagps3yvp31zskfxn50k1gfic9abl4kjwpwk78c0";
|
|
};
|
|
|
|
patches = [ ./static-root-path.patch ];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
substituteInPlace pkg/setting/setting.go --subst-var data
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildFlags = optionalString sqliteSupport "-tags sqlite";
|
|
|
|
outputs = [ "bin" "out" "data" ];
|
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -delete_rpath $out/lib $bin/bin/gogs
|
|
'' + ''
|
|
mkdir $data
|
|
cp -R $src/{public,templates} $data
|
|
|
|
wrapProgram $bin/bin/gogs \
|
|
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
|
|
'';
|
|
|
|
goPackagePath = "github.com/gogits/gogs";
|
|
|
|
meta = {
|
|
description = "A painless self-hosted Git service";
|
|
homepage = https://gogs.io;
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.schneefux ];
|
|
};
|
|
}
|