nixpkgs-suyu/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 17:15:32 +02:00
}:
mkDerivation {
2022-03-06 22:28:56 +01:00
pname = "breeze-grub";
2016-08-04 17:15:32 +02:00
installPhase = ''
runHook preInstall
mkdir -p "$out/grub/themes"
mv breeze "$out/grub/themes"
runHook postInstall
'';
}