2021-07-13 17:10:33 +01:00
|
|
|
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, php }:
|
2021-01-25 08:26:54 +00:00
|
|
|
|
2021-07-13 17:10:33 +01:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "icingaweb2";
|
2021-11-21 14:42:48 +00:00
|
|
|
version = "2.9.4";
|
2019-02-13 15:04:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Icinga";
|
|
|
|
repo = "icingaweb2";
|
|
|
|
rev = "v${version}";
|
2021-11-21 14:42:48 +00:00
|
|
|
sha256 = "sha256:1fd5d2vhiq3s7qr4hnvnh9vv4ns7dvqwq8s67av89hjf3sqgw13j";
|
2019-02-13 15:04:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -ra application bin etc library modules public $out
|
|
|
|
cp -ra doc $out/share
|
|
|
|
|
2021-01-25 08:26:54 +00:00
|
|
|
wrapProgram $out/bin/icingacli --prefix PATH : "${lib.makeBinPath [ php ]}"
|
2019-02-13 15:04:50 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-25 08:26:54 +00:00
|
|
|
meta = with lib; {
|
2019-02-13 15:04:50 +00:00
|
|
|
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/";
|
2021-07-13 17:10:33 +01:00
|
|
|
license = licenses.gpl2Only;
|
2019-02-13 15:04:50 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
};
|
|
|
|
}
|