c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
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
|
|
'';
|
|
}
|