1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix

16 lines
202 B
Nix
Raw Normal View History

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