Skip to content

Commit

Permalink
Fresh SBCL is not compatible with not-fresh iolib
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c committed Jun 28, 2017
1 parent fe2e3ce commit 338be9d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
Expand Up @@ -35,7 +35,7 @@ in
};
};
hunchentoot = addNativeLibs [pkgs.openssl];
iolib = x: {
iolib = x: rec {
propagatedBuildInputs = (x.propagatedBuildInputs or [])
++ (with pkgs; [libfixposix gcc])
++ (with qlnp; [
Expand All @@ -45,6 +45,14 @@ in
testSystems = ["iolib" "iolib/syscalls" "iolib/multiplex" "iolib/streams"
"iolib/zstreams" "iolib/sockets" "iolib/trivial-sockets"
"iolib/pathnames" "iolib/os"];

version = "0.8.3";
src = pkgs.fetchFromGitHub {
owner = "sionescu";
repo = "iolib";
rev = "v${version}";
sha256 = "0pa86bf3jrysnmhasbc0lm6cid9xzril4jsg02g3gziav1xw5x2m";
};
};
cl-unicode = addDeps (with qlnp; [cl-ppcre flexi-streams]);
clack = addDeps (with qlnp;[lack bordeaux-threads prove]);
Expand Down

0 comments on commit 338be9d

Please sign in to comment.