summary refs log tree commit diff
path: root/pkgs/development/libraries/ftgl
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2012-12-11 09:50:21 +0100
committerLluís Batlle i Rossell <viric@viric.name>2012-12-11 09:53:26 +0100
commitd190975896e25f0ea9371e9ce7f1922fbfe01daa (patch)
tree93b0f6df9f1abbf1ea39ae5eec2c29f3521bf692 /pkgs/development/libraries/ftgl
parent0f7dee47a11dfe982d43a3b61b70f2e3feab7e38 (diff)
downloadnixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar.gz
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar.bz2
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar.lz
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar.xz
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.tar.zst
nixpkgs-d190975896e25f0ea9371e9ce7f1922fbfe01daa.zip
ftgl: making it link to GL properly.
Its shared objects require mesa symbols of gl and glu.
Diffstat (limited to 'pkgs/development/libraries/ftgl')
-rw-r--r--pkgs/development/libraries/ftgl/2.1.2.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ftgl/2.1.2.nix b/pkgs/development/libraries/ftgl/2.1.2.nix
index 121f99e3b03..c83173450b1 100644
--- a/pkgs/development/libraries/ftgl/2.1.2.nix
+++ b/pkgs/development/libraries/ftgl/2.1.2.nix
@@ -13,6 +13,8 @@ stdenv.mkDerivation {
 
   buildInputs = [freetype mesa];
 
+  NIX_LDFLAGS = "-lGLU -lGL";
+
   patches = [ ./gcc.patch ];
 
   configureFlags = "--enable-shared";