depot/third_party/nixpkgs/pkgs/servers/icingaweb2/theme-particles/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

29 lines
672 B
Nix

{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
name = "icingaweb2-theme-particles";
version = "1.0.0";
src = fetchFromGitHub {
owner = "Mikesch-mp";
repo = name;
rev = "v${version}";
sha256 = "0m6bbz191686k4djqbk8v0zcdm4cyi159jb3zwz7q295xbpi2vfy";
};
installPhase = ''
mkdir -p "$out"
cp -r * "$out"
'';
meta = with lib; {
description = "This theme adds a nice particle effect to the login screen of Icingaweb 2";
homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-particles";
license = licenses.publicDomain;
platforms = platforms.all;
maintainers = with maintainers; [ das_j ];
};
}