sbclPackages.hu_dot_dwim_dot_graphviz: fix build

hu.dwim.graphviz didn't build because of lack of graphiz in nativeLibs
This commit is contained in:
Kasper Gałkowski 2023-03-02 18:11:24 +01:00
parent 254765f3d2
commit 5f2e4cf4be
3 changed files with 3 additions and 5 deletions

View File

@ -94,8 +94,6 @@ in lib.makeScope pkgs.newScope (self: {")
"mcclim-bezier"
;; Missing dependency on c2ffi cffi extension
"hu.dwim.zlib"
;; Missing libgvc.so native library
"hu.dwim.graphviz"
;; These require libRmath.so, but I don't know where to get it from
"cl-random"
"cl-random-tests"

View File

@ -32963,9 +32963,6 @@ in lib.makeScope pkgs.newScope (self: {
});
systems = [ "hu.dwim.graphviz" ];
lispLibs = [ (getAttr "cffi" self) (getAttr "hu_dot_dwim_dot_asdf" self) (getAttr "metabang-bind" self) ];
meta = {
broken = true;
};
});
hu_dot_dwim_dot_graphviz_dot_documentation = (build-asdf-system {
pname = "hu.dwim.graphviz.documentation";

View File

@ -196,6 +196,9 @@ let
cl-sat_dot_minisat = super.cl-sat_dot_minisat.overrideLispAttrs (o: {
propagatedBuildInputs = [ pkgs.minisat ];
});
hu_dot_dwim_dot_graphviz = super.hu_dot_dwim_dot_graphviz.overrideLispAttrs (o: {
nativeLibs = [ pkgs.graphviz ];
});
});
qlpkgs =