mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
15 lines
201 B
Nix
15 lines
201 B
Nix
{ mkDerivation
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "breeze-grub";
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/grub/themes"
|
|
mv breeze "$out/grub/themes"
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|