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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2023-01-26 03:37:31 +00:00
, buildGoModule
, 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
}:
2023-01-26 03:37:31 +00:00
buildGoModule rec {
pname = "gitea";
2023-01-23 20:30:05 +00:00
version = "1.18.3";
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://dl.gitea.io/gitea/${version}/gitea-src-${version}.tar.gz";
2023-01-23 20:30:05 +00:00
hash = "sha256-jqjpbDgcmwZoc/ovgburFeeta9mAJOmz7yrvmUKAwRU=";
2017-10-18 04:16:33 +00:00
};
2023-01-26 03:37:31 +00:00
vendorHash = null;
patches = [
./static-root-path.patch
];
2017-10-18 04:16:33 +00:00
postPatch = ''
substituteInPlace modules/setting/setting.go --subst-var data
'';
2023-01-26 03:37:31 +00:00
subPackages = [ "." ];
2020-03-18 12:27:40 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optional pamSupport pam;
2017-10-18 04:16:33 +00:00
preBuild =
let
tags = lib.optional pamSupport "pam"
++ lib.optional sqliteSupport "sqlite sqlite_unlock_notify";
tagsString = lib.concatStringsSep " " tags;
in
''
export buildFlagsArray=(
-tags="${tagsString}"
-ldflags='-X "main.Version=${version}" -X "main.Tags=${tagsString}"'
)
'';
2017-10-18 04:16:33 +00:00
2023-01-26 03:37:31 +00:00
ldflags = [ "-s" "-w" ];
outputs = [ "out" "data" ];
2017-10-18 04:16:33 +00:00
postInstall = ''
mkdir $data
2023-01-26 03:37:31 +00:00
cp -R ./{public,templates,options} $data
2017-10-18 04:16:33 +00:00
mkdir -p $out
2023-01-26 03:37:31 +00:00
cp -R ./options/locale $out/locale
2017-10-18 04:16:33 +00:00
wrapProgram $out/bin/gitea \
--prefix PATH : ${lib.makeBinPath [ bash git gzip openssh ]}
2017-10-18 04:16:33 +00:00
'';
2022-10-23 06:32:46 +00:00
passthru.tests = nixosTests.gitea;
meta = with lib; {
2017-10-18 04:16:33 +00:00
description = "Git with a cup of tea";
homepage = "https://gitea.io";
2017-10-18 04:16:33 +00:00
license = licenses.mit;
2022-01-14 19:40:38 +00:00
maintainers = with maintainers; [ disassembler kolaente ma27 techknowlogick ];
broken = stdenv.isDarwin;
2017-10-18 04:16:33 +00:00
};
}