summary refs log tree commit diff
diff options
context:
space:
mode:
authorCedric Corbiere <cedric.corbiere@elitt.com>2021-10-06 22:41:41 +0200
committerCedric Corbiere <cedric.corbiere@elitt.com>2021-10-06 22:41:41 +0200
commit938cb2195c2f2235c782ffbfd2be5f1235ec8d2d (patch)
treed48a8dcc0285ff8071dca96c82a05709724fd3e8
parent1d88d6faedf9255f2fcb30b1e9b1065f4524ddf4 (diff)
downloadnixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar.gz
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar.bz2
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar.lz
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar.xz
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.tar.zst
nixpkgs-938cb2195c2f2235c782ffbfd2be5f1235ec8d2d.zip
pgloader: force the use of the version 2.0.8 of sbcl
Fix the compilation issue
-rw-r--r--pkgs/development/tools/pgloader/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/pgloader/default.nix b/pkgs/development/tools/pgloader/default.nix
index 94217a765e2..b33216a5fac 100644
--- a/pkgs/development/tools/pgloader/default.nix
+++ b/pkgs/development/tools/pgloader/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, makeWrapper, sbcl, sqlite, freetds, libzip, curl, git, cacert, openssl }:
+{ lib, stdenv, fetchurl, makeWrapper, sbcl_2_0_8, sqlite, freetds, libzip, curl, git, cacert, openssl }:
 stdenv.mkDerivation rec {
   pname = "pgloader";
   version = "3.6.2";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ git makeWrapper ];
-  buildInputs = [ sbcl cacert sqlite freetds libzip curl openssl ];
+  buildInputs = [ sbcl_2_0_8 cacert sqlite freetds libzip curl openssl ];
 
   LD_LIBRARY_PATH = lib.makeLibraryPath [ sqlite libzip curl git openssl freetds ];