about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/breeze-grub.nix
blob: 86ce3dc112d05a0c18cf56ff699af36cace527a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ mkDerivation
}:

mkDerivation {
  pname = "breeze-grub";
  installPhase = ''
    runHook preInstall

    mkdir -p "$out/grub/themes"
    mv breeze "$out/grub/themes"

    runHook postInstall
  '';
}