incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / servers / icingaweb2 / theme-april / default.nix
blob05f9b9c971b72ac3f57cf8f2bae997c6bc01f20c
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "icingaweb2-theme-april";
8   version = "1.0.4";
10   src = fetchFromGitHub {
11     owner = "Mikesch-mp";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "0i1js2k47llzgmc77q9frvcmr02mqlhg0qhswx1486fvm6myxg0g";
15   };
17   installPhase = ''
18     mkdir -p "$out"
19     cp -r * "$out"
20   '';
22   meta = with lib; {
23     description = "Icingaweb2 theme for april fools";
24     homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-april";
25     license = licenses.publicDomain;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ das_j ];
28   };