Merge pull request #5115 from iu-parfunc/racket
racket: add libreadline to ffi libs - enables xrepl.
This commit is contained in:
commit
456882b142
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, cairo, file, fontconfig, glib, gtk, freefont_ttf
|
{ 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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "racket";
|
pname = "racket";
|
||||||
|
@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# Various Racket executables do runtime searches for these.
|
# Various Racket executables do runtime searches for these.
|
||||||
ffiSharedLibs = "${cairo}/lib:${fontconfig}/lib:${glib}/lib:${gtk}/lib:${libjpeg}/lib:"
|
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 ];
|
buildInputs = [ file fontconfig freefont_ttf libtool makeWrapper sqlite which ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue