mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #178616 from SuperSandro2000/gitea-
gitea: remove with lib over entire file, remove unused patchShebangs
This commit is contained in:
commit
40fc5e0737
1 changed files with 6 additions and 9 deletions
|
@ -12,8 +12,6 @@
|
|||
, nixosTests
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "gitea";
|
||||
version = "1.16.8";
|
||||
|
@ -36,19 +34,18 @@ buildGoPackage rec {
|
|||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs .
|
||||
substituteInPlace modules/setting/setting.go --subst-var data
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
buildInputs = optional pamSupport pam;
|
||||
buildInputs = lib.optional pamSupport pam;
|
||||
|
||||
preBuild =
|
||||
let
|
||||
tags = optional pamSupport "pam"
|
||||
++ optional sqliteSupport "sqlite sqlite_unlock_notify";
|
||||
tagsString = concatStringsSep " " tags;
|
||||
tags = lib.optional pamSupport "pam"
|
||||
++ lib.optional sqliteSupport "sqlite sqlite_unlock_notify";
|
||||
tagsString = lib.concatStringsSep " " tags;
|
||||
in
|
||||
''
|
||||
export buildFlagsArray=(
|
||||
|
@ -66,14 +63,14 @@ buildGoPackage rec {
|
|||
cp -R ./go/src/${goPackagePath}/options/locale $out/locale
|
||||
|
||||
wrapProgram $out/bin/gitea \
|
||||
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
|
||||
--prefix PATH : ${lib.makeBinPath [ bash git gzip openssh ]}
|
||||
'';
|
||||
|
||||
goPackagePath = "code.gitea.io/gitea";
|
||||
|
||||
passthru.tests.gitea = nixosTests.gitea;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Git with a cup of tea";
|
||||
homepage = "https://gitea.io";
|
||||
license = licenses.mit;
|
||||
|
|
Loading…
Reference in a new issue