nixpkgs/pkgs/servers/icingaweb2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1,002 B
Nix
Raw Normal View History

2021-07-13 16:10:33 +00:00
{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, php }:
2021-07-13 16:10:33 +00:00
stdenvNoCC.mkDerivation rec {
pname = "icingaweb2";
2022-04-08 00:10:22 +00:00
version = "2.10.1";
2019-02-13 15:04:50 +00:00
src = fetchFromGitHub {
owner = "Icinga";
repo = "icingaweb2";
rev = "v${version}";
2022-04-08 00:10:22 +00:00
sha256 = "sha256-X4RaAJjhUnSALJyFYiwagN3cHyW+GyB5MPkW7l+Zv10=";
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
wrapProgram $out/bin/icingacli --prefix PATH : "${lib.makeBinPath [ php ]}"
2019-02-13 15:04:50 +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;
2019-02-13 15:04:50 +00:00
maintainers = with maintainers; [ das_j ];
mainProgram = "icingacli";
platforms = platforms.all;
2019-02-13 15:04:50 +00:00
};
}