repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
kde
/
plasma
/
breeze-grub
/
default.nix
blob
033e2a34800f7905dbf4cd316a1dc7120f2872dc
1
{ mkKdeDerivation }:
2
mkKdeDerivation {
3
pname = "breeze-grub";
4
5
# doesn't actually use cmake or anything
6
nativeBuildInputs = [ ];
7
buildInputs = [ ];
8
9
outputs = [ "out" ];
10
11
installPhase = ''
12
runHook preInstall
13
14
mkdir -p "$out/grub/themes"
15
mv breeze "$out/grub/themes"
16
17
runHook postInstall
18
'';
19
}