sbclPackages: fixed pzmq

This commit is contained in:
Kasper Gałkowski
2022-11-14 00:57:29 +01:00
parent bc8a625adc
commit f59352d0af
3 changed files with 4 additions and 5 deletions
@@ -90,8 +90,6 @@ in {")
"hu.dwim.zlib"
;; Missing libgvc.so native library
"hu.dwim.graphviz"
;; Missing zmq.h C header
"pzmq"
))
(defmethod database->nix-expression ((database sqlite-database) outfile)
-3
View File
@@ -57419,9 +57419,6 @@ in {
});
systems = [ "pzmq" ];
lispLibs = [ (getAttr "cffi" pkgs) (getAttr "cffi-grovel" pkgs) ];
meta = {
broken = true;
};
};
pzmq-compat = {
pname = "pzmq-compat";
+4
View File
@@ -148,6 +148,10 @@ let
cl-readline = pkg: {
nativeLibs = [ pkgs.readline ];
};
pzmq = pkg: {
nativeBuildInputs = [ pkgs.zeromq ];
nativeLibs = [ pkgs.zeromq ];
};
};
qlpkgs =