summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2016-08-30 13:44:47 +0200
committerLancelot SIX <lsix@lancelotsix.com>2016-08-30 13:52:59 +0200
commit186f5a10f058d05fd07c7a9082cf3bf56eea6d62 (patch)
tree95a54595eabcc0b984fbff17b7cf07a0d8a0d268 /pkgs/development/interpreters
parentf19c961b4e461da045f2e72e73701059e5117be0 (diff)
downloadnixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar.gz
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar.bz2
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar.lz
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar.xz
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.tar.zst
nixlib-186f5a10f058d05fd07c7a9082cf3bf56eea6d62.zip
lush2: add missing libSM dependency
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/lush/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/lush/default.nix b/pkgs/development/interpreters/lush/default.nix
index dcfdc11c7a9e..62568c40c784 100644
--- a/pkgs/development/interpreters/lush/default.nix
+++ b/pkgs/development/interpreters/lush/default.nix
@@ -1,5 +1,5 @@
 {stdenv, fetchurl, libX11, xproto, indent, readline, gsl, freeglut, mesa, SDL
-, blas, binutils, intltool, gettext, zlib}:
+, blas, binutils, intltool, gettext, zlib, libSM}:
 
 stdenv.mkDerivation rec {
   baseName = "lush";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    libX11 xproto indent readline gsl freeglut mesa SDL blas binutils
+    libX11 libSM xproto indent readline gsl freeglut mesa SDL blas binutils
     intltool gettext zlib
   ];