lush2: add missing libSM dependency

This commit is contained in:
Lancelot SIX 2016-08-30 13:44:47 +02:00
parent f19c961b4e
commit 186f5a10f0
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047

View File

@ -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
];