* Splashy for showing boot splash screens. Doesn't work yet though.

svn path=/nixpkgs/trunk/; revision=7041
This commit is contained in:
Eelco Dolstra
2006-11-15 00:10:40 +00:00
parent 3dc7e103cf
commit bc394c1775
5 changed files with 189 additions and 1 deletions
@@ -1,4 +1,6 @@
{stdenv, fetchurl, perl}:
{ stdenv, fetchurl, perl
, enableStaticLibraries ? true
}:
stdenv.mkDerivation {
name = "directfb-1.0.0-pre-rc2";
@@ -7,4 +9,5 @@ stdenv.mkDerivation {
md5 = "1996c8e90075b1177b847cd594122401";
};
buildInputs = [perl];
configureFlags = "${if enableStaticLibraries then "--enable-static" else ""}";
}