68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ stdenv, buildGoPackage, fetchurl, makeWrapper
|
|
, git, bash, gzip, openssh, pam
|
|
, sqliteSupport ? true
|
|
, pamSupport ? true
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
buildGoPackage rec {
|
|
pname = "gitea";
|
|
version = "1.11.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
|
|
sha256 = "1v0i7cppdqb02d73qq0bxzz8yydn17jh0g83y3cq3k48awlk22sx";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
mkdir source/
|
|
tar xvf $src -C source/
|
|
'';
|
|
|
|
sourceRoot = "source";
|
|
|
|
patches = [ ./static-root-path.patch ];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
substituteInPlace modules/setting/setting.go --subst-var data
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = optional pamSupport pam;
|
|
|
|
preBuild = let
|
|
tags = optional pamSupport "pam"
|
|
++ optional sqliteSupport "sqlite";
|
|
tagsString = concatStringsSep " " tags;
|
|
in ''
|
|
export buildFlagsArray=(
|
|
-tags="${tagsString}"
|
|
-ldflags='-X "main.Version=${version}" -X "main.Tags=${tagsString}"'
|
|
)
|
|
'';
|
|
|
|
outputs = [ "bin" "out" "data" ];
|
|
|
|
postInstall = ''
|
|
mkdir $data
|
|
cp -R ./go/src/${goPackagePath}/{public,templates,options} $data
|
|
mkdir -p $out
|
|
cp -R ./go/src/${goPackagePath}/options/locale $out/locale
|
|
|
|
wrapProgram $bin/bin/gitea \
|
|
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
|
|
'';
|
|
|
|
goPackagePath = "code.gitea.io/gitea";
|
|
|
|
meta = {
|
|
description = "Git with a cup of tea";
|
|
homepage = "https://gitea.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ disassembler kolaente ma27 ];
|
|
};
|
|
}
|