2019-02-13 16:04:50 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, php }: with lib; stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "icingaweb2";
|
2019-10-22 06:05:05 +02:00
|
|
|
version = "2.7.3";
|
2019-02-13 16:04:50 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Icinga";
|
|
|
|
repo = "icingaweb2";
|
|
|
|
rev = "v${version}";
|
2019-10-22 06:05:05 +02:00
|
|
|
sha256 = "1qdsrpk6jbq9b4v4f2lfpdqs1yh3irbsm5fx02wxnnwvad05bcfv";
|
2019-02-13 16:04:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|