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

16 lines
202 B
Nix
Raw Normal View History

2016-08-04 15:15:32 +00:00
{
mkDerivation
2016-08-04 15:15:32 +00:00
}:
mkDerivation {
2016-08-04 15:15:32 +00:00
name = "breeze-grub";
installPhase = ''
runHook preInstall
mkdir -p "$out/grub/themes"
mv breeze "$out/grub/themes"
runHook postInstall
'';
}