nixpkgs/pkgs/development/libraries/directfb/default.nix
Eelco Dolstra bc394c1775 * Splashy for showing boot splash screens. Doesn't work yet though.
svn path=/nixpkgs/trunk/; revision=7041
2006-11-15 00:10:40 +00:00

14 lines
366 B
Nix

{ stdenv, fetchurl, perl
, enableStaticLibraries ? true
}:
stdenv.mkDerivation {
name = "directfb-1.0.0-pre-rc2";
src = fetchurl {
url = http://directfb.org/downloads/Core/DirectFB-1.0.0-rc2.tar.gz;
md5 = "1996c8e90075b1177b847cd594122401";
};
buildInputs = [perl];
configureFlags = "${if enableStaticLibraries then "--enable-static" else ""}";
}