nixpkgs-odroid-hc4/pkgs/desktops/plasma-5/breeze-grub.nix
2025-12-20 09:59:59 +11:00

15 lines
203 B
Nix

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