xf86_input_wacom: also fix xorg-wacom.pc

I didn't notice that $(out) wouldn't get expanded there,
and that naturally caused issues for reverse dependencies.
wip/nixpkgs-raku
Vladimír Čunát 3 years ago
parent bf051e91d6
commit d7427b0d8b
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 6
      pkgs/os-specific/linux/xf86-input-wacom/default.nix

@ -46,9 +46,9 @@ stdenv.mkDerivation rec {
];
configureFlags = [
"--with-xorg-module-dir=$(out)/lib/xorg/modules"
"--with-sdkdir=$(out)/include/xorg"
"--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d"
"--with-xorg-module-dir=${placeholder "out"}/lib/xorg/modules"
"--with-sdkdir=${placeholder "out"}/include/xorg"
"--with-xorg-conf-dir=${placeholder "out"}/share/X11/xorg.conf.d"
];
meta = with lib; {

Loading…
Cancel
Save