treewide: s/xlibs/xorg/g (#36889)
This commit is contained in:
parent
ebb562d29a
commit
7ec0471242
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, lib, callPackage, fetchurl, makeDesktopItem, makeWrapper
|
{ stdenv, lib, callPackage, fetchurl, makeDesktopItem, makeWrapper
|
||||||
, # Patchelf dependencies:
|
, # Patchelf dependencies:
|
||||||
alsaLib, atomEnv, boehmgc, flac, libogg, libvorbis, libXScrnSaver, libGLU_combined
|
alsaLib, atomEnv, boehmgc, flac, libogg, libvorbis, libXScrnSaver, libGLU_combined
|
||||||
, openssl, xlibs, xorg, zlib
|
, openssl, xorg, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, lib, makeWrapper,
|
{ stdenv, fetchurl, lib, makeWrapper,
|
||||||
# build dependencies
|
# build dependencies
|
||||||
alsaLib, atk, cairo, cups, dbus, expat, fontconfig,
|
alsaLib, atk, cairo, cups, dbus, expat, fontconfig,
|
||||||
freetype, gdk_pixbuf, glib, gnome2, nspr, nss, xlibs,
|
freetype, gdk_pixbuf, glib, gnome2, nspr, nss, xorg,
|
||||||
glibc, udev
|
glibc, udev
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -55,17 +55,17 @@ stdenv.mkDerivation rec {
|
|||||||
gnome2.pango
|
gnome2.pango
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libXScrnSaver
|
xorg.libXScrnSaver
|
||||||
xlibs.libXcomposite
|
xorg.libXcomposite
|
||||||
xlibs.libXcursor
|
xorg.libXcursor
|
||||||
xlibs.libXdamage
|
xorg.libXdamage
|
||||||
xlibs.libXext
|
xorg.libXext
|
||||||
xlibs.libXfixes
|
xorg.libXfixes
|
||||||
xlibs.libXi
|
xorg.libXi
|
||||||
xlibs.libXrandr
|
xorg.libXrandr
|
||||||
xlibs.libXrender
|
xorg.libXrender
|
||||||
xlibs.libXtst
|
xorg.libXtst
|
||||||
stdenv.cc.cc.lib
|
stdenv.cc.cc.lib
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
glibc
|
glibc
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchgit, cmake, pkgconfig, zlib, libpng, cairo, freetype
|
{ stdenv, fetchgit, cmake, pkgconfig, zlib, libpng, cairo, freetype
|
||||||
, json_c, fontconfig, gtkmm3, pangomm, glew, libGLU, xlibs, pcre
|
, json_c, fontconfig, gtkmm3, pangomm, glew, libGLU, xorg, pcre
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
zlib libpng cairo freetype
|
zlib libpng cairo freetype
|
||||||
json_c fontconfig gtkmm3 pangomm glew libGLU
|
json_c fontconfig gtkmm3 pangomm glew libGLU
|
||||||
xlibs.libpthreadstubs xlibs.libXdmcp pcre
|
xorg.libpthreadstubs xorg.libXdmcp pcre
|
||||||
];
|
];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, scsh, feh, xlibs }:
|
{ stdenv, fetchFromGitHub, scsh, feh, xorg }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "deco";
|
pname = "deco";
|
||||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
postFixup = ''
|
postFixup = ''
|
||||||
substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
||||||
substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh"
|
substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh"
|
||||||
substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xlibs.xdpyinfo}/bin/xdpyinfo"
|
substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -50,7 +50,7 @@ let
|
|||||||
else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
|
else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
|
||||||
else throw "Unsupported platform for PlayOnLinux: ${stdenv.system}";
|
else throw "Unsupported platform for PlayOnLinux: ${stdenv.system}";
|
||||||
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
|
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
|
||||||
libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xlibs.libX11 ];
|
libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xorg.libX11 ];
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "playonlinux-${version}";
|
name = "playonlinux-${version}";
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
, gtk2, hunspell, icu, libevent, libjpeg, libnotify
|
, gtk2, hunspell, icu, libevent, libjpeg, libnotify
|
||||||
, libstartup_notification, libvpx, makeWrapper, libGLU_combined
|
, libstartup_notification, libvpx, makeWrapper, libGLU_combined
|
||||||
, nspr, nss, pango, perl, python, libpulseaudio, sqlite
|
, nspr, nss, pango, perl, python, libpulseaudio, sqlite
|
||||||
, unzip, xlibs, which, yasm, zip, zlib
|
, unzip, xorg, which, yasm, zip, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
|||||||
hunspell icu libevent libjpeg libnotify libstartup_notification
|
hunspell icu libevent libjpeg libnotify libstartup_notification
|
||||||
libvpx makeWrapper libGLU_combined nspr nss pango perl pkgconfig python
|
libvpx makeWrapper libGLU_combined nspr nss pango perl pkgconfig python
|
||||||
libpulseaudio sqlite unzip which yasm zip zlib
|
libpulseaudio sqlite unzip which yasm zip zlib
|
||||||
] ++ (with xlibs; [
|
] ++ (with xorg; [
|
||||||
libX11 libXext libXft libXi libXrender libXScrnSaver
|
libX11 libXext libXft libXi libXrender libXScrnSaver
|
||||||
libXt pixman scrnsaverproto xextproto
|
libXt pixman scrnsaverproto xextproto
|
||||||
]);
|
]);
|
||||||
|
@ -32,7 +32,7 @@ in
|
|||||||
buildFHSUserEnv {
|
buildFHSUserEnv {
|
||||||
name = "dropbox";
|
name = "dropbox";
|
||||||
|
|
||||||
targetPkgs = pkgs: with pkgs; with xlibs; [
|
targetPkgs = pkgs: with pkgs; with xorg; [
|
||||||
libICE libSM libX11 libXcomposite libXdamage libXext libXfixes libXrender
|
libICE libSM libX11 libXcomposite libXdamage libXext libXfixes libXrender
|
||||||
libXxf86vm libxcb xkeyboardconfig
|
libXxf86vm libxcb xkeyboardconfig
|
||||||
curl dbus firefox-bin fontconfig freetype gcc glib gnutar libxml2 libxslt
|
curl dbus firefox-bin fontconfig freetype gcc glib gnutar libxml2 libxslt
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
, gnutls
|
, gnutls
|
||||||
, zlib
|
, zlib
|
||||||
, jsoncpp
|
, jsoncpp
|
||||||
, xlibs
|
, xorg
|
||||||
, libargon2
|
, libargon2
|
||||||
, cryptopp
|
, cryptopp
|
||||||
, openssl
|
, openssl
|
||||||
@ -114,7 +114,7 @@ stdenv.mkDerivation rec {
|
|||||||
zlib
|
zlib
|
||||||
jsoncpp
|
jsoncpp
|
||||||
restbed
|
restbed
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
libargon2
|
libargon2
|
||||||
cryptopp
|
cryptopp
|
||||||
openssl
|
openssl
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchurl, dpkg, gnome2, atk, cairo, gdk_pixbuf, glib, freetype,
|
{ stdenv, lib, fetchurl, dpkg, gnome2, atk, cairo, gdk_pixbuf, glib, freetype,
|
||||||
fontconfig, dbus, libX11, xlibs, libXi, libXcursor, libXdamage, libXrandr,
|
fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr,
|
||||||
libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss,
|
libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss,
|
||||||
nspr, alsaLib, cups, expat, udev
|
nspr, alsaLib, cups, expat, udev
|
||||||
}:
|
}:
|
||||||
@ -33,7 +33,7 @@ let
|
|||||||
nss
|
nss
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
udev
|
udev
|
||||||
xlibs.libxcb
|
xorg.libxcb
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchurl, dpkg, gnome2, atk, cairo, gdk_pixbuf, glib, freetype,
|
{ stdenv, lib, fetchurl, dpkg, gnome2, atk, cairo, gdk_pixbuf, glib, freetype,
|
||||||
fontconfig, dbus, libX11, xlibs, libXi, libXcursor, libXdamage, libXrandr,
|
fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr,
|
||||||
libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss,
|
libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss,
|
||||||
nspr, alsaLib, cups, expat, udev
|
nspr, alsaLib, cups, expat, udev
|
||||||
}:
|
}:
|
||||||
@ -33,7 +33,7 @@ let
|
|||||||
nss
|
nss
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
udev
|
udev
|
||||||
xlibs.libxcb
|
xorg.libxcb
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
, cairo
|
, cairo
|
||||||
, pango
|
, pango
|
||||||
, gnome3
|
, gnome3
|
||||||
, xlibs
|
, xorg
|
||||||
, libpng12
|
, libpng12
|
||||||
, freetype
|
, freetype
|
||||||
, fontconfig
|
, fontconfig
|
||||||
@ -143,11 +143,11 @@ let
|
|||||||
cairo
|
cairo
|
||||||
pango
|
pango
|
||||||
gnome3.dconf
|
gnome3.dconf
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libXext
|
xorg.libXext
|
||||||
xlibs.libXrender
|
xorg.libXrender
|
||||||
xlibs.libXinerama
|
xorg.libXinerama
|
||||||
xlibs.libXfixes
|
xorg.libXfixes
|
||||||
libpng12
|
libpng12
|
||||||
libidn
|
libidn
|
||||||
zlib
|
zlib
|
||||||
|
@ -9,7 +9,7 @@ let
|
|||||||
|
|
||||||
mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]);
|
mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]);
|
||||||
|
|
||||||
deps = ps: (with ps; [ dbus zlib alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst libXinerama]);
|
deps = ps: (with ps; [ dbus zlib alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xorg; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst libXinerama]);
|
||||||
tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux);
|
tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux);
|
||||||
tvldpath64 = lib.makeLibraryPath (deps pkgs);
|
tvldpath64 = lib.makeLibraryPath (deps pkgs);
|
||||||
in
|
in
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
, qtwebengine
|
, qtwebengine
|
||||||
, sqlite
|
, sqlite
|
||||||
, xorg
|
, xorg
|
||||||
, xlibs
|
|
||||||
, zlib
|
, zlib
|
||||||
# The provided wrapper does this, but since we don't use it
|
# The provided wrapper does this, but since we don't use it
|
||||||
# we emulate the behavior. The downside is that this
|
# we emulate the behavior. The downside is that this
|
||||||
@ -78,7 +77,7 @@ let
|
|||||||
orc
|
orc
|
||||||
sqlite
|
sqlite
|
||||||
xorg.libX11
|
xorg.libX11
|
||||||
xlibs.xcbutilkeysyms
|
xorg.xcbutilkeysyms
|
||||||
xorg.libxcb
|
xorg.libxcb
|
||||||
xorg.libXcomposite
|
xorg.libXcomposite
|
||||||
xorg.libXext
|
xorg.libXext
|
||||||
|
@ -31,7 +31,7 @@ zoteroSrc = stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
fhsEnv = buildFHSUserEnv {
|
fhsEnv = buildFHSUserEnv {
|
||||||
name = "zotero-fhs-env";
|
name = "zotero-fhs-env";
|
||||||
targetPkgs = pkgs: with pkgs; with xlibs; [
|
targetPkgs = pkgs: with pkgs; with xorg; [
|
||||||
gtk3 dbus-glib
|
gtk3 dbus-glib
|
||||||
libXt nss
|
libXt nss
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, xlibs, cmake, subversion, libGLU_combined, qt5, boost,
|
{stdenv, fetchurl, cmake, subversion, libGLU_combined, qt5, boost,
|
||||||
python27, python27Packages}:
|
python27, python27Packages}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, lib, xlibs }:
|
{ stdenv, fetchurl, lib, xorg }:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "scilab-bin-${ver}";
|
name = "scilab-bin-${ver}";
|
||||||
@ -33,12 +33,12 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
libPath = lib.makeLibraryPath [
|
libPath = lib.makeLibraryPath [
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libXext
|
xorg.libXext
|
||||||
xlibs.libXi
|
xorg.libXi
|
||||||
xlibs.libXrender
|
xorg.libXrender
|
||||||
xlibs.libXtst
|
xorg.libXtst
|
||||||
xlibs.libXxf86vm
|
xorg.libXxf86vm
|
||||||
];
|
];
|
||||||
|
|
||||||
phases = [ "unpackPhase" "fixupPhase" "installPhase" ];
|
phases = [ "unpackPhase" "fixupPhase" "installPhase" ];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, rustPlatform, cargo, libXinerama, libX11, xlibs, pkgconfig }:
|
{ stdenv, fetchFromGitHub, rustPlatform, cargo, libXinerama, libX11, pkgconfig }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
name = "wtftw-0.0pre20170921";
|
name = "wtftw-0.0pre20170921";
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchurl, unzip, xlibs, libGLU_combined }:
|
{ stdenv, fetchurl, unzip, xorg, libGLU_combined }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "AntTweakBar-1.16";
|
name = "AntTweakBar-1.16";
|
||||||
|
|
||||||
buildInputs = [ unzip xlibs.libX11 libGLU_combined ];
|
buildInputs = [ unzip xorg.libX11 libGLU_combined ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/anttweakbar/AntTweakBar_116.zip";
|
url = "mirror://sourceforge/project/anttweakbar/AntTweakBar_116.zip";
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
kdbusaddons, kded, kdesignerplugin, kemoticons, kglobalaccel, kguiaddons,
|
kdbusaddons, kded, kdesignerplugin, kemoticons, kglobalaccel, kguiaddons,
|
||||||
ki18n, kiconthemes, kio, kitemmodels, kinit, knotifications, kparts, kservice,
|
ki18n, kiconthemes, kio, kitemmodels, kinit, knotifications, kparts, kservice,
|
||||||
ktextwidgets, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui,
|
ktextwidgets, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui,
|
||||||
networkmanager, qtbase, qtsvg, qttools, qtx11extras, xlibs
|
networkmanager, qtbase, qtsvg, qttools, qtx11extras, xorg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
@ -17,7 +17,7 @@ mkDerivation {
|
|||||||
propagatedNativeBuildInputs = [ kdoctools ];
|
propagatedNativeBuildInputs = [ kdoctools ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
kcompletion kconfig kded kglobalaccel ki18n kio kservice kwidgetsaddons
|
kcompletion kconfig kded kglobalaccel ki18n kio kservice kwidgetsaddons
|
||||||
kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM
|
kxmlgui networkmanager qtsvg qtx11extras xorg.libSM
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons kdesignerplugin
|
kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons kdesignerplugin
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
|
||||||
, glib, dbus, gst_all_1, v4l_utils, alsaLib, ffmpeg, libjack2, libudev, libva, xlibs
|
, glib, dbus, gst_all_1, v4l_utils, alsaLib, ffmpeg, libjack2, libudev, libva, xorg
|
||||||
, sbc, SDL2, makeFontsConf, freefont_ttf
|
, sbc, SDL2, makeFontsConf, freefont_ttf
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ in stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer v4l_utils
|
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer v4l_utils
|
||||||
alsaLib ffmpeg libjack2 libudev libva xlibs.libX11 sbc SDL2
|
alsaLib ffmpeg libjack2 libudev libva xorg.libX11 sbc SDL2
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
dbus, fontconfig, freetype, glib, harfbuzz, icu, libX11, libXcomposite,
|
dbus, fontconfig, freetype, glib, harfbuzz, icu, libX11, libXcomposite,
|
||||||
libXcursor, libXext, libXi, libXrender, libinput, libjpeg, libpng, libtiff,
|
libXcursor, libXext, libXi, libXrender, libinput, libjpeg, libpng, libtiff,
|
||||||
libxcb, libxkbcommon, libxml2, libxslt, openssl, pcre16, pcre2, sqlite, udev,
|
libxcb, libxkbcommon, libxml2, libxslt, openssl, pcre16, pcre2, sqlite, udev,
|
||||||
xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, xcbutilwm, xlibs,
|
xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, xcbutilwm, xorg,
|
||||||
zlib,
|
zlib,
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
, bison, coreutils, flex, git, gperf, ninja, pkgconfig, python2, which
|
, bison, coreutils, flex, git, gperf, ninja, pkgconfig, python2, which
|
||||||
|
|
||||||
, xlibs, libXcursor, libXScrnSaver, libXrandr, libXtst
|
, xorg, libXcursor, libXScrnSaver, libXrandr, libXtst
|
||||||
, fontconfig, freetype, harfbuzz, icu, dbus
|
, fontconfig, freetype, harfbuzz, icu, dbus
|
||||||
, zlib, minizip, libjpeg, libpng, libtiff, libwebp, libopus
|
, zlib, minizip, libjpeg, libpng, libtiff, libwebp, libopus
|
||||||
, jsoncpp, protobuf, libvpx, srtp, snappy, nss, libevent
|
, jsoncpp, protobuf, libvpx, srtp, snappy, nss, libevent
|
||||||
@ -103,8 +103,8 @@ qtModule {
|
|||||||
pciutils
|
pciutils
|
||||||
|
|
||||||
# X11 libs
|
# X11 libs
|
||||||
xlibs.xrandr libXScrnSaver libXcursor libXrandr xlibs.libpciaccess libXtst
|
xorg.xrandr libXScrnSaver libXcursor libXrandr xorg.libpciaccess libXtst
|
||||||
xlibs.libXcomposite
|
xorg.libXcomposite
|
||||||
];
|
];
|
||||||
|
|
||||||
dontUseNinjaBuild = true;
|
dontUseNinjaBuild = true;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake
|
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake
|
||||||
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls
|
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls
|
||||||
, gtk3, wayland, libwebp, enchant, xlibs, libxkbcommon, epoxy, at-spi2-core
|
, gtk3, wayland, libwebp, enchant, xorg, libxkbcommon, epoxy, at-spi2-core
|
||||||
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
|
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
|
||||||
, libidn, libedit, readline, libGLU_combined, libintlOrEmpty
|
, libidn, libedit, readline, libGLU_combined, libintlOrEmpty
|
||||||
, enableGeoLocation ? true, geoclue2, sqlite
|
, enableGeoLocation ? true, geoclue2, sqlite
|
||||||
@ -92,7 +92,7 @@ stdenv.mkDerivation rec {
|
|||||||
sqlite gst-plugins-base gst-plugins-bad libxkbcommon epoxy at-spi2-core
|
sqlite gst-plugins-base gst-plugins-bad libxkbcommon epoxy at-spi2-core
|
||||||
] ++ optional enableGeoLocation geoclue2
|
] ++ optional enableGeoLocation geoclue2
|
||||||
++ optional enableGtk2Plugins gtk2
|
++ optional enableGtk2Plugins gtk2
|
||||||
++ (with xlibs; [ libXdmcp libXt libXtst ])
|
++ (with xorg; [ libXdmcp libXt libXtst ])
|
||||||
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
|
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
|
||||||
++ optional stdenv.isLinux wayland;
|
++ optional stdenv.isLinux wayland;
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
, libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick
|
, libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick
|
||||||
, pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi
|
, pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi
|
||||||
, cmake, libssh2, openssl, mysql, darwin, git, perl, pcre, gecode_3, curl
|
, cmake, libssh2, openssl, mysql, darwin, git, perl, pcre, gecode_3, curl
|
||||||
, libmsgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap, xlibs, gtk2, buildRubyGem
|
, libmsgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap, xorg, gtk2, buildRubyGem
|
||||||
, cairo, re2, rake, gobjectIntrospection, gdk_pixbuf
|
, cairo, re2, rake, gobjectIntrospection, gdk_pixbuf
|
||||||
}@args:
|
}@args:
|
||||||
|
|
||||||
@ -60,12 +60,12 @@ in
|
|||||||
|
|
||||||
cairo = attrs: {
|
cairo = attrs: {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk2 pcre xlibs.libpthreadstubs xlibs.libXdmcp];
|
buildInputs = [ gtk2 pcre xorg.libpthreadstubs xorg.libXdmcp];
|
||||||
};
|
};
|
||||||
|
|
||||||
cairo-gobject = attrs: {
|
cairo-gobject = attrs: {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ cairo pcre xlibs.libpthreadstubs xlibs.libXdmcp ];
|
buildInputs = [ cairo pcre xorg.libpthreadstubs xorg.libXdmcp ];
|
||||||
};
|
};
|
||||||
|
|
||||||
capybara-webkit = attrs: {
|
capybara-webkit = attrs: {
|
||||||
@ -128,7 +128,7 @@ in
|
|||||||
|
|
||||||
gtk2 = attrs: {
|
gtk2 = attrs: {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk2 pcre xlibs.libpthreadstubs xlibs.libXdmcp];
|
buildInputs = [ gtk2 pcre xorg.libpthreadstubs xorg.libXdmcp];
|
||||||
# CFLAGS must be set for this gem to detect gdkkeysyms.h correctly
|
# CFLAGS must be set for this gem to detect gdkkeysyms.h correctly
|
||||||
CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I/non-existent-path";
|
CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I/non-existent-path";
|
||||||
};
|
};
|
||||||
@ -205,7 +205,7 @@ in
|
|||||||
|
|
||||||
pango = attrs: {
|
pango = attrs: {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk2 xlibs.libXdmcp pcre xlibs.libpthreadstubs ];
|
buildInputs = [ gtk2 xorg.libXdmcp pcre xorg.libpthreadstubs ];
|
||||||
};
|
};
|
||||||
|
|
||||||
patron = attrs: {
|
patron = attrs: {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, gnome2, fetchurl, pkgs, xlibs, udev, makeWrapper, makeDesktopItem }:
|
{ stdenv, lib, gnome2, fetchurl, pkgs, xorg, udev, makeWrapper, makeDesktopItem }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "postman-${version}";
|
name = "postman-${version}";
|
||||||
@ -54,19 +54,19 @@ stdenv.mkDerivation rec {
|
|||||||
pkgs.nss
|
pkgs.nss
|
||||||
pkgs.nspr
|
pkgs.nspr
|
||||||
pkgs.udev.lib
|
pkgs.udev.lib
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libxcb
|
xorg.libxcb
|
||||||
xlibs.libXi
|
xorg.libXi
|
||||||
xlibs.libXcursor
|
xorg.libXcursor
|
||||||
xlibs.libXdamage
|
xorg.libXdamage
|
||||||
xlibs.libXrandr
|
xorg.libXrandr
|
||||||
xlibs.libXcomposite
|
xorg.libXcomposite
|
||||||
xlibs.libXext
|
xorg.libXext
|
||||||
xlibs.libXfixes
|
xorg.libXfixes
|
||||||
xlibs.libXrender
|
xorg.libXrender
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libXtst
|
xorg.libXtst
|
||||||
xlibs.libXScrnSaver
|
xorg.libXScrnSaver
|
||||||
];
|
];
|
||||||
in ''
|
in ''
|
||||||
patchelf \
|
patchelf \
|
||||||
|
@ -15,7 +15,7 @@ let
|
|||||||
pciutils
|
pciutils
|
||||||
python2
|
python2
|
||||||
# Games' dependencies
|
# Games' dependencies
|
||||||
xlibs.xrandr
|
xorg.xrandr
|
||||||
which
|
which
|
||||||
# Needed by gdialog, including in the steam-runtime
|
# Needed by gdialog, including in the steam-runtime
|
||||||
perl
|
perl
|
||||||
@ -51,12 +51,12 @@ in buildFHSUserEnv rec {
|
|||||||
|
|
||||||
multiPkgs = pkgs: with pkgs; [
|
multiPkgs = pkgs: with pkgs; [
|
||||||
# These are required by steam with proper errors
|
# These are required by steam with proper errors
|
||||||
xlibs.libXcomposite
|
xorg.libXcomposite
|
||||||
xlibs.libXtst
|
xorg.libXtst
|
||||||
xlibs.libXrandr
|
xorg.libXrandr
|
||||||
xlibs.libXext
|
xorg.libXext
|
||||||
xlibs.libX11
|
xorg.libX11
|
||||||
xlibs.libXfixes
|
xorg.libXfixes
|
||||||
|
|
||||||
# Needed to properly check for libGL.so.1 in steam-wrapper.sh
|
# Needed to properly check for libGL.so.1 in steam-wrapper.sh
|
||||||
pkgsi686Linux.glxinfo
|
pkgsi686Linux.glxinfo
|
||||||
@ -67,7 +67,7 @@ in buildFHSUserEnv rec {
|
|||||||
libdrm
|
libdrm
|
||||||
mono
|
mono
|
||||||
xorg.xkeyboardconfig
|
xorg.xkeyboardconfig
|
||||||
xlibs.libpciaccess
|
xorg.libpciaccess
|
||||||
|
|
||||||
(steamPackages.steam-runtime-wrapped.override {
|
(steamPackages.steam-runtime-wrapped.override {
|
||||||
inherit nativeOnly runtimeOnly;
|
inherit nativeOnly runtimeOnly;
|
||||||
|
@ -15,15 +15,15 @@ let
|
|||||||
gdk_pixbuf
|
gdk_pixbuf
|
||||||
|
|
||||||
# Without these it silently fails
|
# Without these it silently fails
|
||||||
xlibs.libXinerama
|
xorg.libXinerama
|
||||||
xlibs.libXdamage
|
xorg.libXdamage
|
||||||
xlibs.libXcursor
|
xorg.libXcursor
|
||||||
xlibs.libXrender
|
xorg.libXrender
|
||||||
xlibs.libXScrnSaver
|
xorg.libXScrnSaver
|
||||||
xlibs.libXxf86vm
|
xorg.libXxf86vm
|
||||||
xlibs.libXi
|
xorg.libXi
|
||||||
xlibs.libSM
|
xorg.libSM
|
||||||
xlibs.libICE
|
xorg.libICE
|
||||||
gnome2.GConf
|
gnome2.GConf
|
||||||
freetype
|
freetype
|
||||||
(curl.override { gnutlsSupport = true; sslSupport = false; })
|
(curl.override { gnutlsSupport = true; sslSupport = false; })
|
||||||
@ -46,8 +46,8 @@ let
|
|||||||
networkmanager098
|
networkmanager098
|
||||||
|
|
||||||
# Verified games requirements
|
# Verified games requirements
|
||||||
xlibs.libXmu
|
xorg.libXmu
|
||||||
xlibs.libxcb
|
xorg.libxcb
|
||||||
libGLU
|
libGLU
|
||||||
libuuid
|
libuuid
|
||||||
libogg
|
libogg
|
||||||
@ -60,7 +60,7 @@ let
|
|||||||
tbb
|
tbb
|
||||||
|
|
||||||
# Other things from runtime
|
# Other things from runtime
|
||||||
xlibs.libXinerama
|
xorg.libXinerama
|
||||||
flac
|
flac
|
||||||
freeglut
|
freeglut
|
||||||
libjpeg
|
libjpeg
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, xlibs, fetchgit, libXScrnSaver, libX11 }:
|
{ stdenv, fetchgit, libXScrnSaver, libX11 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "x11idle-unstable-2017-07-01";
|
name = "x11idle-unstable-2017-07-01";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
||||||
, poppler, xlibs, pcre, python, glib, fontforge, cairo, pango, openjdk8
|
, poppler, xorg, pcre, python, glib, fontforge, cairo, pango, openjdk8
|
||||||
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
xlibs.libpthreadstubs
|
xorg.libpthreadstubs
|
||||||
xlibs.libXdmcp
|
xorg.libXdmcp
|
||||||
pcre
|
pcre
|
||||||
python
|
python
|
||||||
glib
|
glib
|
||||||
|
@ -9538,7 +9538,7 @@ with pkgs;
|
|||||||
libburn = callPackage ../development/libraries/libburn { };
|
libburn = callPackage ../development/libraries/libburn { };
|
||||||
|
|
||||||
libcaca = callPackage ../development/libraries/libcaca {
|
libcaca = callPackage ../development/libraries/libcaca {
|
||||||
inherit (xlibs) libX11 libXext;
|
inherit (xorg) libX11 libXext;
|
||||||
};
|
};
|
||||||
|
|
||||||
libcanberra = callPackage ../development/libraries/libcanberra { };
|
libcanberra = callPackage ../development/libraries/libcanberra { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user