5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
19 lines
317 B
Nix
19 lines
317 B
Nix
{mkKdeDerivation}:
|
|
mkKdeDerivation {
|
|
pname = "breeze-grub";
|
|
|
|
# doesn't actually use cmake or anything
|
|
nativeBuildInputs = [];
|
|
buildInputs = [];
|
|
|
|
outputs = ["out"];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/grub/themes"
|
|
mv breeze "$out/grub/themes"
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|