mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
xorg{xcb-util-keysyms,libxkbfile}: split the dev output
This commit is contained in:
parent
debdd33fc8
commit
47305626ab
@ -214,6 +214,10 @@ in
|
||||
libXpresent = attrs: attrs
|
||||
// { buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ]; };
|
||||
|
||||
libxkbfile = attrs: attrs // {
|
||||
outputs = [ "dev" "out" ]; # mainly to avoid propagation
|
||||
};
|
||||
|
||||
setxkbmap = attrs: attrs // {
|
||||
postInstall =
|
||||
''
|
||||
@ -238,6 +242,10 @@ in
|
||||
meta.maintainers = [ stdenv.lib.maintainers.lovek323 ];
|
||||
};
|
||||
|
||||
xcbutilkeysyms = attrs: attrs // {
|
||||
outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
|
||||
};
|
||||
|
||||
xf86inputevdev = attrs: attrs // {
|
||||
preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
|
||||
installFlags = "sdkdir=\${out}/include/xorg";
|
||||
|
Loading…
Reference in New Issue
Block a user