3
0
Fork 0
forked from mirrors/nixpkgs

* More examples of interpolation.

svn path=/nixpkgs/trunk/; revision=5244
This commit is contained in:
Eelco Dolstra 2006-05-01 15:25:17 +00:00
parent d56e3d6f5a
commit 4acfb1a684
7 changed files with 24 additions and 40 deletions

View file

@ -21,8 +21,8 @@ stdenv.mkDerivation {
configureFlags =
[ "--enable-a4-paper" ] /* We obey ISO standards! */
++ (if enablePDFtoPPM then [
("--with-freetype2-library=${freetype}/lib")
("--with-freetype2-includes=${freetype}/include/freetype2")
"--with-freetype2-library=${freetype}/lib"
"--with-freetype2-includes=${freetype}/include/freetype2"
] else []);
}

View file

@ -1,12 +0,0 @@
source $stdenv/setup
export KDEDIR=$kdelibs
configureFlags="\
--without-arts
--x-includes=$libX11/include \
--x-libraries=$libX11/lib \
"
genericBuild

View file

@ -4,13 +4,18 @@
stdenv.mkDerivation {
name = "kcachegrind-0.4.6";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/kcachegrind-0.4.6.tar.gz;
md5 = "4ed60028dcefd6bf626635d5f2f50273";
};
inherit libX11 kdelibs;
KDEDIR = kdelibs;
configureFlags = "
--without-arts
--x-includes=${libX11}/include
--x-libraries=${libX11}/lib";
buildInputs = [kdelibs libX11 libXext libSM zlib perl qt expat libpng libjpeg];
}

View file

@ -1,12 +0,0 @@
source $stdenv/setup
configureFlags="\
--with-pngincludedir=$libpng/include \
--with-pnglibdir=$libpng/lib \
--with-jpegincludedir=$libjpeg/include \
--with-jpeglibdir=$libjpeg/lib \
--with-expatincludedir=$expat/include \
--with-expatlibdir=$expat/lib \
"
genericBuild

View file

@ -5,16 +5,19 @@ assert libpng != null && libjpeg != null && expat != null;
stdenv.mkDerivation {
name = "graphviz-2.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/graphviz-2.4.tar.gz;
md5 = "f1074d38a7eeb5e5b2ebfdb643aebf8a";
};
buildInputs = [x11 libpng libjpeg expat libXaw yacc libtool];
configureFlags = [
(if x11 == null then "--without-x" else "")
];
inherit libpng libjpeg expat;
configureFlags =
[ "--with-pngincludedir=${libpng}/include"
"--with-pnglibdir=${libpng}/lib"
"--with-jpegincludedir=${libjpeg}/include"
"--with-jpeglibdir=${libjpeg}/lib"
"--with-expatincludedir=${expat}/include"
"--with-expatlibdir=${expat}/lib"
]
++ (if x11 == null then ["--without-x"] else []);
}

View file

@ -1,4 +0,0 @@
source $stdenv/setup
configureFlags="--with-aterm=$aterm --with-sdf=$sdf --with-strategoxt=$strategoxt --with-hevea=$hevea --with-latex=$tetex"
genericBuild

View file

@ -2,11 +2,15 @@
stdenv.mkDerivation {
name = "bibtex-tools-0.2pre13026";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/bibtex-tools-0.2pre13026.tar.gz;
md5 = "2d8a5de7c53eb670307048eb3d14cdd6";
};
inherit aterm tetex hevea sdf strategoxt;
configureFlags = "
--with-aterm=${aterm}
--with-sdf=${sdf}
--with-strategoxt=${strategoxt}
--with-hevea=${hevea}
--with-latex=${tetex}";
buildInputs = [aterm sdf strategoxt hevea];
}