mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
17 lines
227 B
Nix
17 lines
227 B
Nix
|
{
|
||
|
plasmaPackage
|
||
|
}:
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "breeze-grub";
|
||
|
outputs = [ "out" ];
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p "$out/grub/themes"
|
||
|
mv breeze "$out/grub/themes"
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
}
|