pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / icingaweb2 / theme-particles / default.nix
blob7e8adb72c6d938b4378974271eee7a0668b18419
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "icingaweb2-theme-particles";
8   version = "1.0.0";
10   src = fetchFromGitHub {
11     owner = "Mikesch-mp";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "0m6bbz191686k4djqbk8v0zcdm4cyi159jb3zwz7q295xbpi2vfy";
15   };
17   installPhase = ''
18     mkdir -p "$out"
19     cp -r * "$out"
20   '';
22   meta = with lib; {
23     description = "This theme adds a nice particle effect to the login screen of Icingaweb 2";
24     homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-particles";
25     license = licenses.publicDomain;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ das_j ];
28   };