3
0
Fork 0
forked from mirrors/nixpkgs

racket: add libreadline to ffi libs - enables xrepl.

This commit is contained in:
Ryan Newton 2014-11-24 13:58:22 -05:00
parent 557a3c92e3
commit fd73e9948d

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, cairo, file, fontconfig, glib, gtk, freefont_ttf
, libjpeg, libpng, libtool, makeWrapper, openssl, pango, sqlite, which } :
, libjpeg, libpng, libtool, makeWrapper, openssl, pango, sqlite, which, readline } :
stdenv.mkDerivation rec {
pname = "racket";
@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
# Various Racket executables do runtime searches for these.
ffiSharedLibs = "${cairo}/lib:${fontconfig}/lib:${glib}/lib:${gtk}/lib:${libjpeg}/lib:"
+ "${libpng}/lib:${openssl}/lib:${pango}/lib:${sqlite}/lib";
+ "${libpng}/lib:${openssl}/lib:${pango}/lib:${sqlite}/lib:"
+ "${readline}/lib";
buildInputs = [ file fontconfig freefont_ttf libtool makeWrapper sqlite which ];