Skip to content

Commit 528d353

Browse files
TravisWhitakerbjornfor
authored andcommittedNov 24, 2016
graphviz: Make derivations pure on non-NixOS systems.
1 parent 2aacd5b commit 528d353

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

Diff for: ‎pkgs/tools/graphics/graphviz/2.0.nix

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
2626
"--with-jpeglibdir=${libjpeg.out}/lib"
2727
"--with-expatincludedir=${expat.dev}/include"
2828
"--with-expatlibdir=${expat.out}/lib"
29+
"--with-ltdl-include=${libtool}/include"
30+
"--with-ltdl-lib=${libtool.lib}/lib"
2931
]
3032
++ stdenv.lib.optional (xlibsWrapper == null) "--without-x";
3133

Diff for: ‎pkgs/tools/graphics/graphviz/2.32.nix

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
2626
"--with-jpeglibdir=${libjpeg.out}/lib"
2727
"--with-expatincludedir=${expat.dev}/include"
2828
"--with-expatlibdir=${expat.out}/lib"
29+
"--with-ltdl-include=${libtool}/include"
30+
"--with-ltdl-lib=${libtool.lib}/lib"
2931
"--with-cgraph=no"
3032
"--with-sparse=no"
3133
]

0 commit comments

Comments
 (0)
Please sign in to comment.