biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / servers / icingaweb2 / thirdparty.nix
blob6a2a8bebd4947e0a422843cf0f5036baaa7103a7
1 { stdenvNoCC, lib, fetchFromGitHub, nixosTests }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "icingaweb2-thirdparty";
5   version = "0.12.1";
7   src = fetchFromGitHub {
8     owner = "Icinga";
9     repo = "icinga-php-thirdparty";
10     rev = "v${version}";
11     sha256 = "sha256-T67DcsHVf3yDQveNtSPqLoOOPuT4ThkUSCJ9aCSVaIc=";
12   };
14   installPhase = ''
15     mkdir -p "$out"
16     cp -r * "$out"
17   '';
19   passthru.tests = { inherit (nixosTests) icingaweb2; };
21   meta = {
22     description = "Third party dependencies for Icingaweb 2";
23     homepage = "https://github.com/Icinga/icinga-php-thirdparty";
24     license = lib.licenses.mit;
25     platforms = lib.platforms.all;
26     maintainers = with lib.maintainers; [ das_j ];
27   };