mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
25 lines
691 B
Nix
25 lines
691 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gerrit";
|
|
version = "3.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war";
|
|
sha256 = "01hak4gqaqn40a0qvmg8a89ai3ndnjls5v64m8awig8j1yysz5vl";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out"/webapps/
|
|
ln -s ${src} "$out"/webapps/gerrit-${version}.war
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.gerritcodereview.com/index.md";
|
|
license = licenses.asl20;
|
|
description = "A web based code review and repository management for the git version control system";
|
|
maintainers = with maintainers; [ jammerful ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|