nixpkgs/pkgs/servers/icingaweb2/ipl.nix
2024-08-18 00:29:43 +02:00

29 lines
690 B
Nix

{ stdenvNoCC, lib, fetchFromGitHub, nixosTests }:
stdenvNoCC.mkDerivation rec {
pname = "icingaweb2-ipl";
version = "0.13.2";
src = fetchFromGitHub {
owner = "Icinga";
repo = "icinga-php-library";
rev = "v${version}";
hash = "sha256-b0y3EKcYWt3cH79HvHnpiHt18ZbRf9lEsfKTZO0dHME=";
};
installPhase = ''
mkdir -p "$out"
cp -r * "$out"
'';
passthru.tests = { inherit (nixosTests) icingaweb2; };
meta = {
description = "PHP library package for Icingaweb 2";
homepage = "https://github.com/Icinga/icinga-php-library";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ das_j ];
};
}