summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Kądziołka <kuba@kadziolka.net>2020-09-13 17:52:22 +0200
committerJakub Kądziołka <kuba@kadziolka.net>2020-09-13 17:52:22 +0200
commit72ccc9b885919e4eb45b5137e42cd9262c9a2639 (patch)
treeb15c0068f8ed78e291fee655978a041fd8410570
parentb3fd4226babd83ef4d7f25ec67bc69006c7a3d89 (diff)
downloadnixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar.gz
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar.bz2
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar.lz
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar.xz
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.tar.zst
nixpkgs-72ccc9b885919e4eb45b5137e42cd9262c9a2639.zip
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.
-rw-r--r--pkgs/development/chez-modules/chez-mit/default.nix2
-rw-r--r--pkgs/development/chez-modules/chez-scmutils/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/chez-modules/chez-mit/default.nix b/pkgs/development/chez-modules/chez-mit/default.nix
index fc2c0f7ba4f..3942195aaa7 100644
--- a/pkgs/development/chez-modules/chez-mit/default.nix
+++ b/pkgs/development/chez-modules/chez-mit/default.nix
@@ -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
   '';
 
diff --git a/pkgs/development/chez-modules/chez-scmutils/default.nix b/pkgs/development/chez-modules/chez-scmutils/default.nix
index 861ff4ff46b..cda24f0959a 100644
--- a/pkgs/development/chez-modules/chez-scmutils/default.nix
+++ b/pkgs/development/chez-modules/chez-scmutils/default.nix
@@ -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
   '';