pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / icingaweb2 / ipl.nix
blobe6f3ea5f16851248904b9a9046ea75da5a31a7dd
1 { stdenvNoCC, lib, fetchFromGitHub, nixosTests }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "icingaweb2-ipl";
5   version = "0.14.1";
7   src = fetchFromGitHub {
8     owner = "Icinga";
9     repo = "icinga-php-library";
10     rev = "v${version}";
11     hash = "sha256-TR2hd8TdWA2zSyalxBaqqdcK6FO2CovqddF8mvvyb1U=";
12   };
14   installPhase = ''
15     mkdir -p "$out"
16     cp -r * "$out"
17   '';
19   passthru.tests = { inherit (nixosTests) icingaweb2; };
21   meta = {
22     description = "PHP library package for Icingaweb 2";
23     homepage = "https://github.com/Icinga/icinga-php-library";
24     license = lib.licenses.mit;
25     platforms = lib.platforms.all;
26     maintainers = with lib.maintainers; [ das_j ];
27   };