mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
14 lines
201 B
Nix
14 lines
201 B
Nix
{ mkDerivation
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "breeze-grub";
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/grub/themes"
|
|
mv breeze "$out/grub/themes"
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|