summary refs log tree commit diff
path: root/pkgs/os-specific/linux/xf86-input-wacom
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-07-16 17:35:02 +0200
committerVladimír Čunát <v@cunat.cz>2021-07-16 17:35:02 +0200
commitd7427b0d8bfc52f898798f6cbfb0c3b13d43917f (patch)
treed7990700d3d289e38428ba65b6fa888559ff61c7 /pkgs/os-specific/linux/xf86-input-wacom
parentbf051e91d6018e3620e368d4401470694bebd831 (diff)
downloadnixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar.gz
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar.bz2
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar.lz
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar.xz
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.tar.zst
nixpkgs-d7427b0d8bfc52f898798f6cbfb0c3b13d43917f.zip
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.
Diffstat (limited to 'pkgs/os-specific/linux/xf86-input-wacom')
-rw-r--r--pkgs/os-specific/linux/xf86-input-wacom/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/xf86-input-wacom/default.nix b/pkgs/os-specific/linux/xf86-input-wacom/default.nix
index 5f4434c0a6b..4ebc4ed7663 100644
--- a/pkgs/os-specific/linux/xf86-input-wacom/default.nix
+++ b/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; {