nixpkgs-suyu/pkgs/desktops/plasma-5/breeze-grub.nix
2017-06-18 08:42:20 -05:00

16 lines
225 B
Nix

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