* Revert r7041. I think we're better off with gensplash than with

splashy.

svn path=/nixpkgs/trunk/; revision=7059
This commit is contained in:
Eelco Dolstra
2006-11-17 11:45:56 +00:00
parent 3803cfdff2
commit 298f1ffad6
5 changed files with 1 additions and 189 deletions

View File

@@ -1,6 +1,4 @@
{ stdenv, fetchurl, perl
, enableStaticLibraries ? true
}:
{stdenv, fetchurl, perl}:
stdenv.mkDerivation {
name = "directfb-1.0.0-pre-rc2";
@@ -9,5 +7,4 @@ stdenv.mkDerivation {
md5 = "1996c8e90075b1177b847cd594122401";
};
buildInputs = [perl];
configureFlags = "${if enableStaticLibraries then "--enable-static" else ""}";
}

View File

@@ -1,17 +0,0 @@
{ stdenv, fetchurl, pkgconfig, gettext, perl
, enableStatic ? false
}:
assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.10.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/glib-2.10.3.tar.bz2;
md5 = "87206e721c12d185d17dd9ecd7e30369";
};
buildInputs = [pkgconfig perl];
propagatedBuildInputs = [gettext];
configureFlags = "${if enableStatic then "--enable-static" else ""}";
inherit enableStatic;
}