about summary refs log tree commit diff
path: root/pkgs/servers/icingaweb2
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2021-07-13 18:10:33 +0200
committerJanne Heß <janne@hess.ooo>2021-07-13 18:10:33 +0200
commit2ff6e037a94045f63ebd161236f37740d83e911b (patch)
treed38c8c8a8bfe119d174e02711c49ccc18bb50e88 /pkgs/servers/icingaweb2
parent4036bb94c78329292ef44c233bb42da40b8bd4d2 (diff)
icingaweb2: 2.8.3 -> 2.9.0
Diffstat (limited to 'pkgs/servers/icingaweb2')
-rw-r--r--pkgs/servers/icingaweb2/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/icingaweb2/default.nix b/pkgs/servers/icingaweb2/default.nix
index 6e8cdd5dca41f..7923674a3b76b 100644
--- a/pkgs/servers/icingaweb2/default.nix
+++ b/pkgs/servers/icingaweb2/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, php }:
+{ stdenvNoCC, lib, fetchFromGitHub, makeWrapper, php }:
 
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
   pname = "icingaweb2";
-  version = "2.8.3";
+  version = "2.9.0";
 
   src = fetchFromGitHub {
     owner = "Icinga";
     repo = "icingaweb2";
     rev = "v${version}";
-    sha256 = "sha256-wk6rTEYRS0q0HpQRbFAmfeYVrF/xLP/HchEXNqqNpYg=";
+    sha256 = "1vp2gdvgvw960178yaqql6iza0rg2h8japsnass3kkrwrmb2liq5";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
       Analyse problems and act on them.
     '';
     homepage = "https://www.icinga.com/products/icinga-web-2/";
-    license = licenses.gpl2;
+    license = licenses.gpl2Only;
     platforms = platforms.all;
     maintainers = with maintainers; [ das_j ];
   };