nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix
2017-06-18 08:44:45 -05:00

16 lines
202 B
Nix

{
mkDerivation
}:
mkDerivation {
name = "breeze-grub";
installPhase = ''
runHook preInstall
mkdir -p "$out/grub/themes"
mv breeze "$out/grub/themes"
runHook postInstall
'';
}