3
0
Fork 0
forked from mirrors/nixpkgs

* DirectFB.

svn path=/nixpkgs/trunk/; revision=7040
This commit is contained in:
Eelco Dolstra 2006-11-14 22:23:33 +00:00
parent 82888b7a20
commit 3dc7e103cf
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, perl}:
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];
}

View file

@ -1221,6 +1221,10 @@ rec {
inherit fetchurl stdenv libxml2 openssl bzip2;
};
directfb = import ../development/libraries/directfb {
inherit fetchurl stdenv perl;
};
expat = import ../development/libraries/expat {
inherit fetchurl stdenv;
};