about summary refs log tree commit diff
path: root/pkgs/development/interpreters/guile/2.0.nix
diff options
context:
space:
mode:
authorIngo Ruhnke <grumbel@gmail.com>2021-11-20 22:58:43 +0100
committerIngo Ruhnke <grumbel@gmail.com>2022-04-28 15:40:34 +0200
commit2bd3cb67b76e404b11ee20700e2f97d716a71ec9 (patch)
tree072c13dfe693b63847256dd9d6c63317c8d7b5d1 /pkgs/development/interpreters/guile/2.0.nix
parent17c69351537491a96cfa57576a75e1e34d21c645 (diff)
guile: fix non-existing libunistring include path
The include/ directory for libunistring is inside the libunistring.dev
package, not libunistring, thus the .pc file was pointing to a
non-existing path.
Diffstat (limited to 'pkgs/development/interpreters/guile/2.0.nix')
-rw-r--r--pkgs/development/interpreters/guile/2.0.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/guile/2.0.nix b/pkgs/development/interpreters/guile/2.0.nix
index 8214ca2adcda1..38efe0d919601 100644
--- a/pkgs/development/interpreters/guile/2.0.nix
+++ b/pkgs/development/interpreters/guile/2.0.nix
@@ -121,7 +121,7 @@ builder rec {
   + ''
     sed -i "$out/lib/pkgconfig/guile"-*.pc    \
         -e "s|-lunistring|-L${libunistring}/lib -lunistring|g ;
-            s|^Cflags:\(.*\)$|Cflags: -I${libunistring}/include \1|g ;
+            s|^Cflags:\(.*\)$|Cflags: -I${libunistring.dev}/include \1|g ;
             s|-lltdl|-L${libtool.lib}/lib -lltdl|g ;
             s|includedir=$out|includedir=$dev|g
             "