3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
203 B
Nix
Raw Normal View History

2016-08-04 16:15:32 +01:00
{
mkDerivation
2016-08-04 16:15:32 +01:00
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "breeze-grub";
2016-08-04 16:15:32 +01:00
installPhase = ''
runHook preInstall
mkdir -p "$out/grub/themes"
mv breeze "$out/grub/themes"
runHook postInstall
'';
}