nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix

15 lines
201 B
Nix

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