nixpkgs/pkgs/servers/icingaweb2/default.nix

36 lines
958 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper, php }:
stdenv.mkDerivation rec {
pname = "icingaweb2";
2021-07-13 12:42:35 +02:00
version = "2.8.3";
2019-02-13 16:04:50 +01:00
src = fetchFromGitHub {
owner = "Icinga";
repo = "icingaweb2";
rev = "v${version}";
2021-07-13 12:42:35 +02:00
sha256 = "sha256-wk6rTEYRS0q0HpQRbFAmfeYVrF/xLP/HchEXNqqNpYg=";
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 : "${lib.makeBinPath [ php ]}"
2019-02-13 16:04:50 +01:00
'';
meta = with lib; {
2019-02-13 16:04:50 +01: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/";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ das_j ];
};
}