mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #55710 from dasJ/icingaweb2-init
icingaweb2: Init at 2.6.2
This commit is contained in:
commit
09ca6b39d8
33
pkgs/servers/icingaweb2/default.nix
Normal file
33
pkgs/servers/icingaweb2/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, lib, fetchFromGitHub, makeWrapper, php }: with lib; stdenv.mkDerivation rec {
|
||||
name = "icingaweb2-${version}";
|
||||
version = "2.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Icinga";
|
||||
repo = "icingaweb2";
|
||||
rev = "v${version}";
|
||||
sha256 = "1gf28nm94bq6r7i8yds5y9s59559i2zvj0swzb28zll6xbyprib0";
|
||||
};
|
||||
|
||||
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 : "${makeBinPath [ php ]}"
|
||||
'';
|
||||
|
||||
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 = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ das_j ];
|
||||
};
|
||||
}
|
@ -13594,6 +13594,8 @@ in
|
||||
|
||||
hydron = callPackage ../servers/hydron { };
|
||||
|
||||
icingaweb2 = callPackage ../servers/icingaweb2 { };
|
||||
|
||||
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
|
||||
|
||||
jboss = callPackage ../servers/http/jboss { };
|
||||
|
Loading…
Reference in New Issue
Block a user