nixpkgs/pkgs/applications/version-management/gitea/default.nix

70 lines
1.8 KiB
Nix
Raw Normal View History

2017-10-18 04:16:33 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper
2018-12-23 00:49:25 +00:00
, git, bash, gzip, openssh, pam
2017-10-18 04:16:33 +00:00
, sqliteSupport ? true
2018-12-23 00:49:25 +00:00
, pamSupport ? true
2017-10-18 04:16:33 +00:00
}:
with stdenv.lib;
buildGoPackage rec {
pname = "gitea";
2019-08-22 17:38:21 +00:00
version = "1.9.2";
2017-10-18 04:16:33 +00:00
src = fetchFromGitHub {
owner = "go-gitea";
repo = "gitea";
rev = "v${version}";
2019-08-22 17:38:21 +00:00
sha256 = "1i7h6scycwzil87fcx1a19w5pl0986g5ax7y030w0wgmrq3zj53a";
2018-10-09 21:56:26 +00:00
# Required to generate the same checksum on MacOS due to unicode encoding differences
# More information: https://github.com/NixOS/nixpkgs/pull/48128
extraPostFetch = ''
rm -rf $out/integrations
rm -rf $out/vendor/github.com/Unknown/cae/tz/testdata
rm -rf $out/vendor/github.com/Unknown/cae/zip/testdata
rm -rf $out/vendor/gopkg.in/macaron.v1/fixtures
'';
2017-10-18 04:16:33 +00:00
};
patches = [ ./static-root-path.patch ];
postPatch = ''
patchShebangs .
substituteInPlace modules/setting/setting.go --subst-var data
'';
2018-12-23 00:49:25 +00:00
nativeBuildInputs = [ makeWrapper ]
++ optional pamSupport pam;
2017-10-18 04:16:33 +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 04:16:33 +00:00
outputs = [ "bin" "out" "data" ];
postInstall = ''
mkdir $data
cp -R $src/{public,templates,options} $data
2017-10-18 04:16:33 +00:00
mkdir -p $out
cp -R $src/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";
2018-03-11 16:07:33 +00:00
homepage = https://gitea.io;
2017-10-18 04:16:33 +00:00
license = licenses.mit;
2019-05-11 00:00:40 +00:00
maintainers = with maintainers; [ disassembler kolaente ];
2017-10-18 04:16:33 +00:00
};
}