mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
xf86-input-synaptics: split dev output
This commit is contained in:
parent
c4661e9643
commit
f4eb808554
@ -169,10 +169,10 @@ in {
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
services.xserver.modules = [ pkg ];
|
||||
services.xserver.modules = [ pkg.out ];
|
||||
|
||||
environment.etc."${etcFile}".source =
|
||||
"${pkg}/share/X11/xorg.conf.d/50-synaptics.conf";
|
||||
"${pkg.out}/share/X11/xorg.conf.d/50-synaptics.conf";
|
||||
|
||||
environment.systemPackages = [ pkg ];
|
||||
|
||||
|
@ -305,6 +305,7 @@ in
|
||||
};
|
||||
|
||||
xf86inputsynaptics = attrs: attrs // {
|
||||
outputs = [ "dev" "out" ]; # *.pc pulls xorgserver.dev
|
||||
buildInputs = attrs.buildInputs ++ [args.mtdev args.libevdev];
|
||||
installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/share/X11/xorg.conf.d";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user