2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, makeWrapper
|
2018-12-23 00:52:39 +00:00
|
|
|
, git, bash, gzip, openssh, pam
|
2016-10-10 16:11:58 +01:00
|
|
|
, sqliteSupport ? true
|
2018-12-23 00:52:39 +00:00
|
|
|
, pamSupport ? true
|
2016-10-10 16:11:58 +01:00
|
|
|
}:
|
2016-02-29 04:00:45 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2017-03-22 21:52:52 +00:00
|
|
|
|
2020-10-29 14:30:57 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gogs";
|
2022-03-12 09:40:25 +00:00
|
|
|
version = "0.12.5";
|
2016-10-10 16:11:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-30 13:43:49 +01:00
|
|
|
owner = "gogs";
|
2016-10-10 16:11:58 +01:00
|
|
|
repo = "gogs";
|
|
|
|
rev = "v${version}";
|
2022-03-12 09:40:25 +00:00
|
|
|
sha256 = "sha256-I3kFRKgVMGMKgHU5VEeNai8FseN/ea6MzEP94AR2Zfo=";
|
2016-10-10 16:11:58 +01:00
|
|
|
};
|
|
|
|
|
2022-01-24 11:48:10 +00:00
|
|
|
vendorSha256 = "sha256-3dT5D+oDd0mpJp/cP53TQcRUkmqh6g3sRBWWAUqhaAo=";
|
2020-10-29 14:30:57 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2017-10-02 22:15:13 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2017-03-22 21:52:52 +00:00
|
|
|
patchShebangs .
|
2017-10-02 22:15:13 +01:00
|
|
|
'';
|
2016-02-29 04:00:45 +00:00
|
|
|
|
2020-10-29 14:30:57 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper openssh ];
|
2020-03-18 09:26:23 +00:00
|
|
|
|
|
|
|
buildInputs = optional pamSupport pam;
|
2016-10-10 16:11:58 +01:00
|
|
|
|
2021-08-08 01:11:16 +01:00
|
|
|
tags =
|
2019-03-25 20:41:51 +00:00
|
|
|
( optional sqliteSupport "sqlite"
|
|
|
|
++ optional pamSupport "pam");
|
2016-10-10 16:11:58 +01:00
|
|
|
|
2017-10-06 06:26:19 +01:00
|
|
|
postInstall = ''
|
2016-07-29 17:32:13 +01:00
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
wrapProgram $out/bin/gogs \
|
2017-10-02 20:04:32 +01:00
|
|
|
--prefix PATH : ${makeBinPath [ bash git gzip openssh ]}
|
2016-02-29 04:00:45 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-10 16:11:58 +01:00
|
|
|
meta = {
|
|
|
|
description = "A painless self-hosted Git service";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gogs.io";
|
2017-03-22 21:52:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.schneefux ];
|
2016-10-10 16:11:58 +01:00
|
|
|
};
|
2016-02-29 04:00:45 +00:00
|
|
|
}
|