mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
20 lines
323 B
Nix
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
|
|
'';
|
|
}
|