2020-03-20 00:32:16 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchurl, makeWrapper
|
2018-12-23 00:49:25 +00:00
|
|
|
, git, bash, gzip, openssh, pam
|
2020-05-10 01:50:41 +01:00
|
|
|
, fetchpatch
|
2017-10-18 05:16:33 +01:00
|
|
|
, sqliteSupport ? true
|
2018-12-23 00:49:25 +00:00
|
|
|
, pamSupport ? true
|
2017-10-18 05:16:33 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-03-30 10:23:35 +00:00
|
|
|
pname = "gitea";
|
2020-05-10 01:50:41 +01:00
|
|
|
version = "1.11.5";
|
2017-10-18 05:16:33 +01:00
|
|
|
|
2020-03-20 00:32:16 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
|
2020-05-10 01:50:41 +01:00
|
|
|
sha256 = "0iqxwg53wjwi4vpq2h6fwmniazsi4cf68fcjrs459qbz4d6x8xa9";
|
2017-10-18 05:16:33 +01:00
|
|
|
};
|
|
|
|
|
2020-03-20 00:32:16 +00:00
|
|
|
unpackPhase = ''
|
|
|
|
mkdir source/
|
|
|
|
tar xvf $src -C source/
|
|
|
|
'';
|
|
|
|
|
|
|
|
sourceRoot = "source";
|
|
|
|
|
2020-05-10 01:50:41 +01:00
|
|
|
patches = [
|
|
|
|
./static-root-path.patch
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/go-gitea/gitea/commit/1830d0ed5f4a67e3360ecbb55933b5540b6affce.patch";
|
|
|
|
sha256 = "163531pcki28qfs56l64vv4xxaavxgksf038da1sn21j5l2jm81i";
|
|
|
|
})
|
2020-05-18 09:01:29 +01:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/go-gitea/gitea/commit/e1c00bd6af677b944a102d84314eba8c487648b3.patch";
|
|
|
|
sha256 = "1yf48fvky4as72w38lbrk4qpl4af31i2ckr90h3x5wf61yc105wv";
|
|
|
|
})
|
2020-05-10 01:50:41 +01:00
|
|
|
];
|
2017-10-18 05:16:33 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
substituteInPlace modules/setting/setting.go --subst-var data
|
|
|
|
'';
|
|
|
|
|
2020-03-18 12:27:40 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
buildInputs = optional pamSupport pam;
|
2017-10-18 05:16:33 +01:00
|
|
|
|
2019-03-30 13:56:55 +00:00
|
|
|
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}"'
|
|
|
|
)
|
2018-12-22 03:29:52 +00:00
|
|
|
'';
|
2017-10-18 05:16:33 +01:00
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
outputs = [ "out" "data" ];
|
2017-10-18 05:16:33 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir $data
|
2020-03-20 00:32:16 +00:00
|
|
|
cp -R ./go/src/${goPackagePath}/{public,templates,options} $data
|
2017-10-18 05:16:33 +01:00
|
|
|
mkdir -p $out
|
2020-03-20 00:32:16 +00:00
|
|
|
cp -R ./go/src/${goPackagePath}/options/locale $out/locale
|
2017-10-18 05:16:33 +01:00
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
wrapProgram $out/bin/gitea \
|
2017-10-18 05:16:33 +01:00
|
|
|
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
goPackagePath = "code.gitea.io/gitea";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Git with a cup of tea";
|
2019-09-07 21:25:14 +01:00
|
|
|
homepage = "https://gitea.io";
|
2017-10-18 05:16:33 +01:00
|
|
|
license = licenses.mit;
|
2020-03-20 00:32:16 +00:00
|
|
|
maintainers = with maintainers; [ disassembler kolaente ma27 ];
|
2017-10-18 05:16:33 +01:00
|
|
|
};
|
|
|
|
}
|