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

83 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, buildGoPackage
, fetchurl
, makeWrapper
, 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
, nixosTests
2017-10-18 04:16:33 +00:00
}:
2021-01-15 13:21:58 +00:00
with lib;
2017-10-18 04:16:33 +00:00
buildGoPackage rec {
pname = "gitea";
version = "1.14.6";
2017-10-18 04:16:33 +00:00
# not fetching directly from the git repo, because that lacks several vendor files for the web UI
src = fetchurl {
url = "https://github.com/go-gitea/gitea/releases/download/v${version}/gitea-src-${version}.tar.gz";
sha256 = "sha256-IIoOJlafMD6Kg8Zde3LcoK97PKLmqOUMQN3nmIgqe1o=";
2017-10-18 04:16:33 +00:00
};
unpackPhase = ''
mkdir source/
tar xvf $src -C source/
'';
sourceRoot = "source";
patches = [
./static-root-path.patch
];
2017-10-18 04:16:33 +00: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 04:16:33 +00:00
preBuild =
let
tags = optional pamSupport "pam"
++ optional sqliteSupport "sqlite sqlite_unlock_notify";
tagsString = concatStringsSep " " tags;
in
''
export buildFlagsArray=(
-tags="${tagsString}"
-ldflags='-X "main.Version=${version}" -X "main.Tags=${tagsString}"'
)
'';
2017-10-18 04:16:33 +00:00
outputs = [ "out" "data" ];
2017-10-18 04:16:33 +00:00
postInstall = ''
mkdir $data
cp -R ./go/src/${goPackagePath}/{public,templates,options} $data
2017-10-18 04:16:33 +00:00
mkdir -p $out
cp -R ./go/src/${goPackagePath}/options/locale $out/locale
2017-10-18 04:16:33 +00:00
wrapProgram $out/bin/gitea \
2017-10-18 04:16:33 +00:00
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
'';
goPackagePath = "code.gitea.io/gitea";
passthru.tests.gitea = nixosTests.gitea;
2017-10-18 04:16:33 +00:00
meta = {
description = "Git with a cup of tea";
homepage = "https://gitea.io";
2017-10-18 04:16:33 +00:00
license = licenses.mit;
maintainers = with maintainers; [ disassembler kolaente ma27 ];
2017-10-18 04:16:33 +00:00
};
}