* Working Graphviz / Athena widgets.

svn path=/nixpkgs/trunk/; revision=891
This commit is contained in:
Eelco Dolstra
2004-04-01 13:36:31 +00:00
parent 8feb5fab5b
commit 92b3cc5cfb
7 changed files with 54 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, xproto, libX11, libXt, libXmu, libXpm}:
stdenv.mkDerivation {
name = "libXaw-7.0.0";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXaw-7.0.0.tar.bz2;
md5 = "a58fbb1b5af9e0cf23351b5b1e7b19dd";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [xproto libX11 libXt libXmu libXpm];
}

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, xproto, libX11, libXt}:
stdenv.mkDerivation {
name = "libXmu-6.2.1";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXmu-6.2.1.tar.bz2;
md5 = "9bbdfe7eac185872cd1718d3f2014cf1";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [xproto libX11 libXt];
}

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, xproto, libX11}:
stdenv.mkDerivation {
name = "libXpm-3.5.0";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/libXpm-3.5.0-cvs.tar.bz2;
md5 = "4695fdbc251e0b6dd1b984c51b85c781";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [xproto libX11];
}