mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
stdenvNoCC,
|
|
lib,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
php83,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "icingaweb2";
|
|
version = "2.12.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Icinga";
|
|
repo = "icingaweb2";
|
|
rev = "v${version}";
|
|
hash = "sha256-Ds1SxNQ3WAhY79SWl1ZIQUl2Pb8bZlHISRaSEe+Phos=";
|
|
};
|
|
|
|
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 [ php83 ]}"
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) icingaweb2; };
|
|
|
|
meta = with lib; {
|
|
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.gpl2Plus;
|
|
teams = [ teams.helsinki-systems ];
|
|
mainProgram = "icingacli";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|