nixpkgs/pkgs/kde/plasma/breeze-grub/default.nix
2024-09-20 08:54:48 +03:00

20 lines
323 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
'';
}