mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
c4edf93988
* maintainers: update email conni2461 * maintainers: add helsinki-jo * tree-wide: cleanup maintainership of helsinki-systems
29 lines
693 B
Nix
29 lines
693 B
Nix
{ stdenvNoCC, lib, fetchFromGitHub, nixosTests }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "icingaweb2-ipl";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Icinga";
|
|
repo = "icinga-php-library";
|
|
rev = "v${version}";
|
|
hash = "sha256-TR2hd8TdWA2zSyalxBaqqdcK6FO2CovqddF8mvvyb1U=";
|
|
};
|
|
|
|
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 = lib.teams.helsinki-systems.members;
|
|
};
|
|
}
|