blob: f07b16daddd498e99f158d8f3acd56d556e8db82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
stdenvNoCC,
lib,
fetchFromGitHub,
makeWrapper,
php83,
nixosTests,
}:
stdenvNoCC.mkDerivation rec {
pname = "icingaweb2";
version = "2.12.6";
src = fetchFromGitHub {
owner = "Icinga";
repo = "icingaweb2";
rev = "v${version}";
hash = "sha256-iKxvrZcwzUoh+TVsmx8jVjwHeklT1+dqzhY4kBbOB8Q=";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/share
cp -ra application bin etc library modules public schema $out
cp -ra doc $out/share
wrapProgram $out/bin/icingacli --prefix PATH : "${lib.makeBinPath [ php83 ]}"
'';
passthru.tests = { inherit (nixosTests) icingaweb2; };
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 = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ helsinki-Jo ];
mainProgram = "icingacli";
platforms = lib.platforms.all;
};
}
|