Skip to content

Commit

Permalink
chez-modules: Fix path to csv-site.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
meithecatte committed Sep 13, 2020
1 parent b3fd422 commit 72ccc9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/chez-modules/chez-mit/default.nix
Expand Up @@ -13,7 +13,7 @@ stdenv.mkDerivation {
buildInputs = [ chez chez-srfi ];

buildPhase = ''
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv9.5-site
export CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv-site
make PREFIX=$out CHEZ=${chez}/bin/scheme
'';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/chez-modules/chez-scmutils/default.nix
Expand Up @@ -13,7 +13,7 @@ stdenv.mkDerivation {
buildInputs = [ chez chez-srfi chez-mit ];

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
'';

Expand Down

0 comments on commit 72ccc9b

Please sign in to comment.