* Some more updates.

svn path=/nixpkgs/trunk/; revision=884
This commit is contained in:
Eelco Dolstra
2004-03-30 17:42:45 +00:00
parent 00004fa6da
commit 24cb251dd0
5 changed files with 7 additions and 30 deletions
@@ -1,8 +0,0 @@
buildinputs="$pkgconfig $glib"
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd gnet-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
+1 -3
View File
@@ -4,11 +4,9 @@ assert pkgconfig != null && glib != null;
stdenv.mkDerivation {
name = "gnet-2.0.4";
builder = ./builder.sh;
src = fetchurl {
url = http://www.gnetlibrary.org/src/gnet-2.0.4.tar.gz;
md5 = "b43e728391143214e2cfd0b835b6fd2a";
};
pkgconfig = pkgconfig;
glib = glib;
buildInputs = [pkgconfig glib];
}