2024-08-17 22:29:43 +00:00
|
|
|
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, php, nixosTests }:
|
2021-01-25 08:26:54 +00:00
|
|
|
|
2021-07-13 16:10:33 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "icingaweb2";
|
2024-11-15 13:12:08 +00:00
|
|
|
version = "2.12.2";
|
2019-02-13 15:04:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Icinga";
|
|
|
|
repo = "icingaweb2";
|
|
|
|
rev = "v${version}";
|
2024-11-15 13:12:08 +00:00
|
|
|
hash = "sha256-RwKVANFlFWKgMBwlLmX0P4PR+eTN3uz//kMdJ8dLZuU=";
|
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
|
|
|
'';
|
|
|
|
|
2024-08-17 22:29:43 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) icingaweb2; };
|
|
|
|
|
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 16:10:33 +00:00
|
|
|
license = licenses.gpl2Only;
|
2024-11-04 11:59:26 +00:00
|
|
|
maintainers = teams.helsinki-systems.members;
|
2022-05-05 00:46:39 +00:00
|
|
|
mainProgram = "icingacli";
|
|
|
|
platforms = platforms.all;
|
2019-02-13 15:04:50 +00:00
|
|
|
};
|
|
|
|
}
|