* Gnome 2.14.3.

* GTK updates.
* Removed the bzip2 hack.

svn path=/nixpkgs/trunk/; revision=6104
This commit is contained in:
Eelco Dolstra
2006-08-11 22:26:55 +00:00
parent 38ee361757
commit 259d0dd9ee
23 changed files with 609 additions and 676 deletions

View File

@@ -1,10 +0,0 @@
addInputsHook=addBzip2
addBzip2() {
bzip2=$(type -tP bzip2)
test -n $bzip2 || fail
buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
}
source $stdenv/setup
genericBuild

View File

@@ -1,13 +1,12 @@
{stdenv, fetchurl, libxml2, openssl}:
{stdenv, fetchurl, libxml2, openssl, bzip2}:
stdenv.mkDerivation {
name = "dclib-0.3.7";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/dclib-0.3.7.tar.bz2;
md5 = "d35833414534bcac8ce2c8a62ce903a4";
};
buildInputs = [libxml2 openssl];
buildInputs = [libxml2 openssl bzip2];
}