mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
100 lines
2.2 KiB
Nix
100 lines
2.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, git
|
|
, bash
|
|
, coreutils
|
|
, compressDrvWeb
|
|
, gitea
|
|
, gzip
|
|
, openssh
|
|
, sqliteSupport ? true
|
|
, nixosTests
|
|
, buildNpmPackage
|
|
}:
|
|
|
|
let
|
|
frontend = buildNpmPackage {
|
|
pname = "gitea-frontend";
|
|
inherit (gitea) src version;
|
|
|
|
npmDepsHash = "sha256-Sp3xBe5IXys2Qro4x4HKs9dQOnlbstAmtIG6xOOktEk=";
|
|
|
|
# use webpack directly instead of 'make frontend' as the packages are already installed
|
|
buildPhase = ''
|
|
BROWSERSLIST_IGNORE_OLD_DATA=true npx webpack
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -R public $out/
|
|
'';
|
|
};
|
|
in buildGoModule rec {
|
|
pname = "gitea";
|
|
version = "1.22.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "go-gitea";
|
|
repo = "gitea";
|
|
rev = "v${gitea.version}";
|
|
hash = "sha256-F1vvyf/FE/OIfDjM0CCOef/cXy+GPA+8n1AypE0r6p8=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
|
|
vendorHash = "sha256-iKf4ozCBcTJQ6bm6dX4dd4buVMGNDVF+rLuYkb7Zxw8=";
|
|
|
|
outputs = [ "out" "data" ];
|
|
|
|
patches = [ ./static-root-path.patch ];
|
|
|
|
# go-modules derivation doesn't provide $data
|
|
# so we need to wait until it is built, and then
|
|
# at that time we can then apply the substituteInPlace
|
|
overrideModAttrs = _: { postPatch = null; };
|
|
|
|
postPatch = ''
|
|
substituteInPlace modules/setting/server.go --subst-var data
|
|
'';
|
|
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
tags = lib.optionals sqliteSupport [ "sqlite" "sqlite_unlock_notify" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
"-X 'main.Tags=${lib.concatStringsSep " " tags}'"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir $data
|
|
ln -s ${frontend}/public $data/public
|
|
cp -R ./{templates,options} $data
|
|
mkdir -p $out
|
|
cp -R ./options/locale $out/locale
|
|
|
|
wrapProgram $out/bin/gitea \
|
|
--prefix PATH : ${lib.makeBinPath [ bash coreutils git gzip openssh ]}
|
|
'';
|
|
|
|
passthru = {
|
|
data-compressed = lib.warn "gitea.passthru.data-compressed is deprecated. Use \"compressDrvWeb gitea.data\"." (compressDrvWeb gitea.data {});
|
|
|
|
tests = nixosTests.gitea;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Git with a cup of tea";
|
|
homepage = "https://about.gitea.com";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ma27 techknowlogick SuperSandro2000 ];
|
|
mainProgram = "gitea";
|
|
};
|
|
}
|