about summary refs log tree commit diff
path: root/pkgs/kde/plasma/breeze-grub/default.nix
blob: a5fe01b4cad7e8091953338a32044be748b9a1e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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
  '';
}