biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / kde / plasma / breeze-grub / default.nix
blob033e2a34800f7905dbf4cd316a1dc7120f2872dc
1 { mkKdeDerivation }:
2 mkKdeDerivation {
3   pname = "breeze-grub";
5   # doesn't actually use cmake or anything
6   nativeBuildInputs = [ ];
7   buildInputs = [ ];
9   outputs = [ "out" ];
11   installPhase = ''
12     runHook preInstall
14     mkdir -p "$out/grub/themes"
15     mv breeze "$out/grub/themes"
17     runHook postInstall
18   '';