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

43 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-08-30 21:05:43 +00:00
stdenv.mkDerivation rec {
pname = "gerrit";
2021-02-19 16:10:59 +00:00
version = "3.3.2";
2017-08-30 21:05:43 +00:00
src = fetchurl {
url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war";
2021-02-19 16:10:59 +00:00
sha256 = "sha256-tqlJANxJl2r0ZxPb7d8KU9cRMQUFPUIm/zMp4zREGL0=";
2017-08-30 21:05:43 +00:00
};
buildCommand = ''
mkdir -p "$out"/webapps/
ln -s ${src} "$out"/webapps/gerrit-${version}.war
2017-08-30 21:05:43 +00:00
'';
passthru = {
# A list of plugins that are part of the gerrit.war file.
# Use `java -jar gerrit.war ls | grep plugins/` to generate that list.
plugins = [
"codemirror-editor"
"commit-message-length-validator"
"delete-project"
"download-commands"
"gitiles"
"hooks"
"plugin-manager"
"replication"
"reviewnotes"
"singleusergroup"
"webhooks"
];
};
meta = with lib; {
2019-09-05 15:50:03 +00:00
homepage = "https://www.gerritcodereview.com/index.md";
2017-08-30 21:05:43 +00:00
license = licenses.asl20;
description = "A web based code review and repository management for the git version control system";
2020-07-13 15:41:32 +00:00
maintainers = with maintainers; [ flokli jammerful zimbatm ];
2017-08-30 21:05:43 +00:00
platforms = platforms.unix;
};
}