We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent fe2e3ce commit 338be9dCopy full SHA for 338be9d
pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
@@ -35,7 +35,7 @@ in
35
};
36
37
hunchentoot = addNativeLibs [pkgs.openssl];
38
- iolib = x: {
+ iolib = x: rec {
39
propagatedBuildInputs = (x.propagatedBuildInputs or [])
40
++ (with pkgs; [libfixposix gcc])
41
++ (with qlnp; [
@@ -45,6 +45,14 @@ in
45
testSystems = ["iolib" "iolib/syscalls" "iolib/multiplex" "iolib/streams"
46
"iolib/zstreams" "iolib/sockets" "iolib/trivial-sockets"
47
"iolib/pathnames" "iolib/os"];
48
+
49
+ version = "0.8.3";
50
+ src = pkgs.fetchFromGitHub {
51
+ owner = "sionescu";
52
+ repo = "iolib";
53
+ rev = "v${version}";
54
+ sha256 = "0pa86bf3jrysnmhasbc0lm6cid9xzril4jsg02g3gziav1xw5x2m";
55
+ };
56
57
cl-unicode = addDeps (with qlnp; [cl-ppcre flexi-streams]);
58
clack = addDeps (with qlnp;[lack bordeaux-threads prove]);
0 commit comments