1 { stdenvNoCC, lib, fetchFromGitHub, makeWrapper, php }:
3 stdenvNoCC.mkDerivation rec {
7 src = fetchFromGitHub {
11 hash = "sha256-j101HsFvJZrzpK395TF4seztYfCCQKnqrpEpGj5xrtQ=";
14 nativeBuildInputs = [ makeWrapper ];
18 cp -ra application bin etc library modules public $out
21 wrapProgram $out/bin/icingacli --prefix PATH : "${lib.makeBinPath [ php ]}"
25 description = "Webinterface for Icinga 2";
27 A lightweight and extensible web interface to keep an eye on your environment.
28 Analyse problems and act on them.
30 homepage = "https://www.icinga.com/products/icinga-web-2/";
31 license = licenses.gpl2Only;
32 maintainers = with maintainers; [ das_j ];
33 mainProgram = "icingacli";
34 platforms = platforms.all;