enlightenment.efl: list dependencies in alphabetical order
This commit is contained in:
parent
5560b8bf84
commit
887aa513df
@ -1,9 +1,10 @@
|
||||
{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, lz4, freetype, fontconfig
|
||||
, fribidi, SDL2, SDL, libGL, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio
|
||||
, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, bullet, luajit
|
||||
, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg
|
||||
, dbus, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp
|
||||
, curl, libinput, systemd, mesa, writeText, gtk3
|
||||
{ stdenv, fetchurl, pkgconfig, SDL, SDL2, alsaLib, bullet, curl, dbus,
|
||||
doxygen, expat, fontconfig, freetype, fribidi, ghostscript, giflib,
|
||||
glib, gst_all_1, gtk3, harfbuzz, jbig2dec, libGL, libdrm, libinput,
|
||||
libjpeg, libpng, libpulseaudio, libraw, librsvg, libsndfile,
|
||||
libspectre, libtiff, libwebp, libxkbcommon, luajit, lz4, mesa,
|
||||
openjpeg, openssl, poppler, python27Packages, systemd, udev,
|
||||
utillinux, writeText, xineLib, xorg, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -15,19 +16,79 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1cjk56z0whpzcqwg3xdq23kyp1g83xa67m9dlp7ywmb36bn4ca59";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig gtk3 ];
|
||||
nativeBuildInputs = [
|
||||
gtk3
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [ openssl zlib lz4 freetype fontconfig SDL libGL mesa
|
||||
giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
||||
gst_all_1.gst-libav libpulseaudio libsndfile xorg.libXcursor xorg.xorgproto
|
||||
xorg.libX11 udev systemd ];
|
||||
buildInputs = [
|
||||
SDL
|
||||
fontconfig
|
||||
freetype
|
||||
giflib
|
||||
glib
|
||||
gst_all_1.gst-libav
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gst-plugins-good
|
||||
gst_all_1.gstreamer
|
||||
libGL
|
||||
libpng
|
||||
libpulseaudio
|
||||
libsndfile
|
||||
libtiff
|
||||
lz4
|
||||
mesa
|
||||
openssl
|
||||
systemd
|
||||
udev
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.xorgproto
|
||||
zlib
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ libxkbcommon python27Packages.dbus-python dbus libjpeg xorg.libXcomposite
|
||||
xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext
|
||||
bullet xorg.libXScrnSaver xorg.libXrender xorg.libXfixes xorg.libXrandr
|
||||
xorg.libxkbfile xorg.libxcb xorg.xcbutilkeysyms openjpeg doxygen expat luajit
|
||||
harfbuzz jbig2dec librsvg dbus alsaLib poppler ghostscript libraw libspectre xineLib libwebp curl libdrm
|
||||
libinput utillinux fribidi SDL2 ];
|
||||
propagatedBuildInputs = [
|
||||
SDL2
|
||||
alsaLib
|
||||
bullet
|
||||
curl
|
||||
dbus
|
||||
dbus
|
||||
doxygen
|
||||
expat
|
||||
fribidi
|
||||
ghostscript
|
||||
harfbuzz
|
||||
jbig2dec
|
||||
libdrm
|
||||
libinput
|
||||
libjpeg
|
||||
libraw
|
||||
librsvg
|
||||
libspectre
|
||||
libwebp
|
||||
libxkbcommon
|
||||
luajit
|
||||
openjpeg
|
||||
poppler
|
||||
python27Packages.dbus-python
|
||||
utillinux
|
||||
xineLib
|
||||
xorg.libXScrnSaver
|
||||
xorg.libXcomposite
|
||||
xorg.libXdamage
|
||||
xorg.libXext
|
||||
xorg.libXfixes
|
||||
xorg.libXi
|
||||
xorg.libXinerama
|
||||
xorg.libXp
|
||||
xorg.libXrandr
|
||||
xorg.libXrender
|
||||
xorg.libXtst
|
||||
xorg.libxcb
|
||||
xorg.libxkbfile
|
||||
xorg.xcbutilkeysyms
|
||||
];
|
||||
|
||||
# ac_ct_CXX must be set to random value, because then it skips some magic which does alternative searching for g++
|
||||
configureFlags = [
|
||||
|
Loading…
Reference in New Issue
Block a user