mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b4628764a8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/icingaweb2/versions
34 lines
964 B
Nix
34 lines
964 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper, php }: with lib; stdenv.mkDerivation rec {
|
|
name = "icingaweb2-${version}";
|
|
version = "2.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Icinga";
|
|
repo = "icingaweb2";
|
|
rev = "v${version}";
|
|
sha256 = "0akz2v9zfdchagnzdqcvzrxyw9bkmg8pp23wwdpwdrw67z2931zj";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|