mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
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:
parent
254765f3d2
commit
5f2e4cf4be
@ -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"
|
||||
|
@ -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";
|
||||
|
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user