c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
17 lines
295 B
Nix
17 lines
295 B
Nix
{mkKdeDerivation}:
|
|
mkKdeDerivation {
|
|
pname = "breeze-grub";
|
|
|
|
# doesn't actually use cmake or anything
|
|
nativeBuildInputs = [];
|
|
buildInputs = [];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/grub/themes"
|
|
mv breeze "$out/grub/themes"
|
|
|
|
runHook postInstall
|
|
'';
|
|
}
|