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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-08-30 22:05:43 +01:00
stdenv.mkDerivation rec {
pname = "gerrit";
2024-05-22 21:28:03 +01:00
version = "3.10.0";
2017-08-30 22:05:43 +01:00
src = fetchurl {
url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war";
2024-05-22 21:28:03 +01:00
hash = "sha256-mlaXCRQlqg2uwzm2/Vi15K5D6lmUUscfZQk/lW1YR+s=";
2017-08-30 22:05:43 +01:00
};
buildCommand = ''
mkdir -p "$out"/webapps/
ln -s ${src} "$out"/webapps/gerrit-${version}.war
2017-08-30 22:05:43 +01: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 16:50:03 +01:00
homepage = "https://www.gerritcodereview.com/index.md";
2017-08-30 22:05:43 +01:00
license = licenses.asl20;
description = "Web based code review and repository management for the git version control system";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
maintainers = with maintainers; [ flokli zimbatm ];
2017-08-30 22:05:43 +01:00
platforms = platforms.unix;
};
}