mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
* 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;
|
||||
};
|
||||
|
||||
directfb = import ../development/libraries/directfb {
|
||||
inherit fetchurl stdenv perl;
|
||||
};
|
||||
|
||||
expat = import ../development/libraries/expat {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user