* Use the default builder.

svn path=/nixpkgs/trunk/; revision=5512
This commit is contained in:
Eelco Dolstra 2006-06-24 11:05:39 +00:00
parent 9273065b05
commit 31a6fe8253
2 changed files with 2 additions and 4 deletions

View File

@ -1,11 +1,9 @@
{stdenv, fetchurl, libtool}:
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "chmlib-0.38";
builder = ./builder.sh;
src = fetchurl {
url = http://66.93.236.84/~jedwin/projects/chmlib/chmlib-0.38.tar.bz2;
md5 = "d72661526aaea377ed30e9f58a086964";
};
buildInputs = [libtool];
}

View File

@ -1373,7 +1373,7 @@ rec {
};
chmlib = (import ../development/libraries/chmlib) {
inherit fetchurl stdenv libtool;
inherit fetchurl stdenv;
};
dclib = (import ../development/libraries/dclib) {