depot/third_party/nixpkgs/pkgs/servers/icingaweb2/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

33 lines
954 B
Nix

{ stdenv, lib, fetchFromGitHub, makeWrapper, php }: with lib; stdenv.mkDerivation rec {
pname = "icingaweb2";
version = "2.7.3";
src = fetchFromGitHub {
owner = "Icinga";
repo = "icingaweb2";
rev = "v${version}";
sha256 = "1qdsrpk6jbq9b4v4f2lfpdqs1yh3irbsm5fx02wxnnwvad05bcfv";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/share
cp -ra application bin etc library modules public $out
cp -ra doc $out/share
wrapProgram $out/bin/icingacli --prefix PATH : "${makeBinPath [ php ]}"
'';
meta = {
description = "Webinterface for Icinga 2";
longDescription = ''
A lightweight and extensible web interface to keep an eye on your environment.
Analyse problems and act on them.
'';
homepage = "https://www.icinga.com/products/icinga-web-2/";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ das_j ];
};
}