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.

94 lines
2.0 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2023-01-26 03:37:31 +00:00
, buildGoModule
, fetchurl
, makeWrapper
, git
, bash
, coreutils
, gitea
, gzip
, openssh
, pam
2017-10-18 04:16:33 +00:00
, sqliteSupport ? true
2018-12-23 00:49:25 +00:00
, pamSupport ? true
, runCommand
, brotli
, xorg
, nixosTests
2017-10-18 04:16:33 +00:00
}:
2023-01-26 03:37:31 +00:00
buildGoModule rec {
pname = "gitea";
version = "1.20.5";
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 {
2023-05-05 19:40:29 +00:00
url = "https://dl.gitea.com/gitea/${version}/gitea-src-${version}.tar.gz";
hash = "sha256-cH/AHsFXOdvfSfj9AZUd3l/RlYE06o1ByZu0vvGQuXw=";
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/server.go --subst-var data
2017-10-18 04:16:33 +00:00
'';
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
tags = lib.optional pamSupport "pam"
++ lib.optionals sqliteSupport [ "sqlite" "sqlite_unlock_notify" ];
2017-10-18 04:16:33 +00:00
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
"-X 'main.Tags=${lib.concatStringsSep " " tags}'"
];
2023-01-26 03:37:31 +00:00
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 coreutils git gzip openssh ]}
2017-10-18 04:16:33 +00:00
'';
passthru = {
data-compressed = runCommand "gitea-data-compressed" {
nativeBuildInputs = [ brotli xorg.lndir ];
} ''
mkdir $out
lndir ${gitea.data}/ $out/
# Create static gzip and brotli files
find -L $out -type f -regextype posix-extended -iregex '.*\.(css|html|js|svg|ttf|txt)' \
-exec gzip --best --keep --force {} ';' \
-exec brotli --best --keep --no-copy-stat {} ';'
'';
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;
mainProgram = "gitea";
2017-10-18 04:16:33 +00:00
};
}