summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/icingaweb2
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2019-02-13 16:04:50 +0100
committerJanne Heß <janne@hess.ooo>2019-02-13 16:04:50 +0100
commitb9f3570c1ce109189dab5b30d1af4ca87bbf81c0 (patch)
treecfbf564f761c1e5ec8b58ce2a4ab7e8bbe02ea9b /pkgs/servers/icingaweb2
parentb37667a645ce095d54dba6aad56945f8e3dcb604 (diff)
icingaweb2: Init at 2.6.2
Diffstat (limited to 'pkgs/servers/icingaweb2')
-rw-r--r--pkgs/servers/icingaweb2/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/servers/icingaweb2/default.nix b/pkgs/servers/icingaweb2/default.nix
new file mode 100644
index 000000000000..5a6556f248af
--- /dev/null
+++ b/pkgs/servers/icingaweb2/default.nix
@@ -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 ];
+ };
+}