forked from mirrors/nixpkgs
* DirectFB.
svn path=/nixpkgs/trunk/; revision=7040
This commit is contained in:
parent
82888b7a20
commit
3dc7e103cf
10
pkgs/development/libraries/directfb/default.nix
Normal file
10
pkgs/development/libraries/directfb/default.nix
Normal 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];
|
||||||
|
}
|
|
@ -1221,6 +1221,10 @@ rec {
|
||||||
inherit fetchurl stdenv libxml2 openssl bzip2;
|
inherit fetchurl stdenv libxml2 openssl bzip2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
directfb = import ../development/libraries/directfb {
|
||||||
|
inherit fetchurl stdenv perl;
|
||||||
|
};
|
||||||
|
|
||||||
expat = import ../development/libraries/expat {
|
expat = import ../development/libraries/expat {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue