mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Making directfb with more options, so it can be cross-built without X for example.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24926
This commit is contained in:
parent
0d122e7c6f
commit
fca73ee251
1 changed files with 16 additions and 7 deletions
|
@ -1,6 +1,7 @@
|
|||
{stdenv, fetchurl, perl, zlib, libjpeg, freetype,
|
||||
SDL, libX11, xproto, xextproto, libXext, libpng,
|
||||
renderproto, libXrender, giflib}:
|
||||
{stdenv, fetchurl, perl, zlib, libjpeg, freetype, libpng, giflib
|
||||
, enableX11 ? true, libX11, xproto, xextproto, libXext, renderproto, libXrender
|
||||
, enableSDL ? true, SDL }:
|
||||
|
||||
let s = import ./src-for-default.nix; in
|
||||
stdenv.mkDerivation {
|
||||
inherit (s) name;
|
||||
|
@ -8,22 +9,30 @@ stdenv.mkDerivation {
|
|||
url = s.url;
|
||||
sha256 = s.hash;
|
||||
};
|
||||
buildInputs = [perl zlib libjpeg freetype SDL
|
||||
xproto libX11 libXext xextproto libpng
|
||||
renderproto libXrender giflib
|
||||
|
||||
buildNativeInputs = [ perl ];
|
||||
|
||||
buildInputs = [ zlib libjpeg freetype giflib libpng ]
|
||||
++ stdenv.lib.optional enableSDL SDL
|
||||
++ stdenv.lib.optionals enableX11 [
|
||||
xproto libX11 libXext xextproto
|
||||
renderproto libXrender
|
||||
];
|
||||
|
||||
NIX_LDFLAGS="-lgcc_s";
|
||||
|
||||
configureFlags = [
|
||||
"--enable-sdl"
|
||||
"--enable-zlib"
|
||||
"--with-gfxdrivers=all"
|
||||
"--enable-devmem"
|
||||
"--enable-fbdev"
|
||||
"--enable-x11"
|
||||
"--enable-mmx"
|
||||
"--enable-sse"
|
||||
"--enable-sysfs"
|
||||
"--with-software"
|
||||
"--with-smooth-scaling"
|
||||
] ++ stdenv.lib.optionals enableX11 [
|
||||
"--enable-x11"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue