forked from mirrors/nixpkgs
chez-modules: Fix path to csv-site.
It seems that the installation path for chez modules no longer includes the Chez version. This fixes the build for chez-mit and chez-scmutils.
This commit is contained in:
parent
b3fd4226ba
commit
72ccc9b885
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||||
buildInputs = [ chez chez-srfi ];
|
buildInputs = [ chez chez-srfi ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv9.5-site
|
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv-site
|
||||||
make PREFIX=$out CHEZ=${chez}/bin/scheme
|
make PREFIX=$out CHEZ=${chez}/bin/scheme
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||||
buildInputs = [ chez chez-srfi chez-mit ];
|
buildInputs = [ chez chez-srfi chez-mit ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv9.5-site:${chez-mit}/lib/csv9.5-site
|
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv-site:${chez-mit}/lib/csv-site
|
||||||
make PREFIX=$out CHEZ=${chez}/bin/scheme
|
make PREFIX=$out CHEZ=${chez}/bin/scheme
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue