summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics/graphviz
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-02-15 15:08:20 +0100
committerMichael Raskin <7c6f434c@mail.ru>2017-02-15 15:10:00 +0100
commitc731738ecc132f450bc1cb0eaad7c1fa232fa299 (patch)
treea218bc02198f49993d05174b76acb2cc2b04f9e7 /pkgs/tools/graphics/graphviz
parent91d0260feba50b25b13d1e0dd2705039f75e09a2 (diff)
graphviz_2_0: hide inside monotoneViz
The old Graphviz version is vulnerable, but monotone-viz will never feed it bad input.
Diffstat (limited to 'pkgs/tools/graphics/graphviz')
-rw-r--r--pkgs/tools/graphics/graphviz/2.0.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/tools/graphics/graphviz/2.0.nix b/pkgs/tools/graphics/graphviz/2.0.nix
deleted file mode 100644
index 32cc283bc3c9..000000000000
--- a/pkgs/tools/graphics/graphviz/2.0.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, xlibsWrapper, libpng, libjpeg, expat, libXaw
-, yacc, libtool, fontconfig, pango, gd, libwebp
-}:
-
-assert libpng != null && libjpeg != null && expat != null;
-
-stdenv.mkDerivation rec {
- name = "graphviz-2.0";
-
- src = fetchurl {
- url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
- sha256 = "39b8e1f2ba4cc1f5bdc8e39c7be35e5f831253008e4ee2c176984f080416676c";
- };
-
- buildInputs = [
- pkgconfig xlibsWrapper libpng libjpeg expat libXaw yacc
- libtool fontconfig pango gd libwebp
- ];
-
- hardeningDisable = [ "format" "fortify" ];
-
- configureFlags =
- [ "--with-pngincludedir=${libpng.dev}/include"
- "--with-pnglibdir=${libpng.out}/lib"
- "--with-jpegincludedir=${libjpeg.dev}/include"
- "--with-jpeglibdir=${libjpeg.out}/lib"
- "--with-expatincludedir=${expat.dev}/include"
- "--with-expatlibdir=${expat.out}/lib"
- "--with-ltdl-include=${libtool}/include"
- "--with-ltdl-lib=${libtool.lib}/lib"
- ]
- ++ stdenv.lib.optional (xlibsWrapper == null) "--without-x";
-
- meta = {
- description = "A program for visualising graphs";
- homepage = http://www.graphviz.org/;
- branch = "2.0";
- platforms = stdenv.lib.platforms.unix;
- };
-}