nixpkgs/pkgs/kde/plasma/breeze-grub/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
295 B
Nix
Raw Normal View History

{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
'';
}