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.

15 lines
201 B
Nix
Raw Normal View History

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