Merge pull request #36377 from oxij/pkgs/fix-pulseaudio-references
tree-wide: fix pulseaudio references; fix SDL expressions
This commit is contained in:
commit
b49ef26eca
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, config, wrapGAppsHook
|
{ lib, stdenv, fetchurl, config, wrapGAppsHook
|
||||||
, alsaLib
|
, alsaLib
|
||||||
, atk
|
, atk
|
||||||
, cairo
|
, cairo
|
||||||
@ -87,7 +87,7 @@ stdenv.mkDerivation {
|
|||||||
libPath = stdenv.lib.makeLibraryPath
|
libPath = stdenv.lib.makeLibraryPath
|
||||||
[ stdenv.cc.cc
|
[ stdenv.cc.cc
|
||||||
alsaLib
|
alsaLib
|
||||||
alsaLib.dev
|
(lib.getDev alsaLib)
|
||||||
atk
|
atk
|
||||||
cairo
|
cairo
|
||||||
curl
|
curl
|
||||||
@ -124,7 +124,7 @@ stdenv.mkDerivation {
|
|||||||
pango
|
pango
|
||||||
libheimdal
|
libheimdal
|
||||||
libpulseaudio
|
libpulseaudio
|
||||||
libpulseaudio.dev
|
(lib.getDev libpulseaudio)
|
||||||
systemd
|
systemd
|
||||||
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
|
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
, dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3
|
, dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
name = "telegram-desktop-${version}";
|
name = "telegram-desktop-${version}";
|
||||||
version = "1.2.6";
|
version = "1.2.6";
|
||||||
@ -45,7 +47,7 @@ mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
GYP_DEFINES = lib.concatStringsSep "," [
|
GYP_DEFINES = concatStringsSep "," [
|
||||||
"TDESKTOP_DISABLE_CRASH_REPORTS"
|
"TDESKTOP_DISABLE_CRASH_REPORTS"
|
||||||
"TDESKTOP_DISABLE_AUTOUPDATE"
|
"TDESKTOP_DISABLE_AUTOUPDATE"
|
||||||
"TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
|
"TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
|
||||||
@ -57,14 +59,14 @@ mkDerivation rec {
|
|||||||
"-DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
|
"-DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
|
||||||
"-I${minizip}/include/minizip"
|
"-I${minizip}/include/minizip"
|
||||||
# See Telegram/gyp/qt.gypi
|
# See Telegram/gyp/qt.gypi
|
||||||
"-I${qtbase.dev}/mkspecs/linux-g++"
|
"-I${getDev qtbase}/mkspecs/linux-g++"
|
||||||
] ++ lib.concatMap (x: [
|
] ++ concatMap (x: [
|
||||||
"-I${qtbase.dev}/include/${x}"
|
"-I${getDev qtbase}/include/${x}"
|
||||||
"-I${qtbase.dev}/include/${x}/${qtbase.version}"
|
"-I${getDev qtbase}/include/${x}/${qtbase.version}"
|
||||||
"-I${qtbase.dev}/include/${x}/${qtbase.version}/${x}"
|
"-I${getDev qtbase}/include/${x}/${qtbase.version}/${x}"
|
||||||
"-I${libopus.dev}/include/opus"
|
"-I${getDev libopus}/include/opus"
|
||||||
"-I${alsaLib.dev}/include/alsa"
|
"-I${getDev alsaLib}/include/alsa"
|
||||||
"-I${libpulseaudio.dev}/include/pulse"
|
"-I${getDev libpulseaudio}/include/pulse"
|
||||||
]) [ "QtCore" "QtGui" "QtDBus" ];
|
]) [ "QtCore" "QtGui" "QtDBus" ];
|
||||||
CPPFLAGS = NIX_CFLAGS_COMPILE;
|
CPPFLAGS = NIX_CFLAGS_COMPILE;
|
||||||
|
|
||||||
@ -121,7 +123,7 @@ mkDerivation rec {
|
|||||||
-e "s,'XDG-RUNTIME-DIR',\"\''${XDG_RUNTIME_DIR:-/run/user/\$(id --user)}\","
|
-e "s,'XDG-RUNTIME-DIR',\"\''${XDG_RUNTIME_DIR:-/run/user/\$(id --user)}\","
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Telegram Desktop messaging app";
|
description = "Telegram Desktop messaging app";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, pkgconfig, audiofile, libcap, libiconv
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, audiofile, libcap, libiconv
|
||||||
, openglSupport ? false, libGL, libGLU
|
, openglSupport ? false, libGL, libGLU
|
||||||
, alsaSupport ? true, alsaLib
|
, alsaSupport ? true, alsaLib
|
||||||
, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
|
, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
|
||||||
@ -7,13 +7,32 @@
|
|||||||
, hostPlatform, buildPlatform
|
, hostPlatform, buildPlatform
|
||||||
}:
|
}:
|
||||||
|
|
||||||
# OSS is no longer supported, for it's much crappier than ALSA and
|
# NOTE: When editing this expression see if the same change applies to
|
||||||
# PulseAudio.
|
# SDL2 expression too
|
||||||
assert hostPlatform.isLinux -> alsaSupport || pulseaudioSupport;
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
assert !stdenv.isDarwin -> alsaSupport || pulseaudioSupport;
|
||||||
|
assert openglSupport -> (stdenv.isDarwin || x11Support && libGL != null && libGLU != null);
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (stdenv.lib) optional optionals;
|
|
||||||
|
configureFlagsFun = attrs: [
|
||||||
|
"--disable-oss"
|
||||||
|
"--disable-video-x11-xme"
|
||||||
|
"--enable-rpath"
|
||||||
|
# Building without this fails on Darwin with
|
||||||
|
#
|
||||||
|
# ./src/video/x11/SDL_x11sym.h:168:17: error: conflicting types for '_XData32'
|
||||||
|
# SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return)
|
||||||
|
#
|
||||||
|
# Please try revert the change that introduced this comment when updating SDL.
|
||||||
|
] ++ optional stdenv.isDarwin "--disable-x11-shared"
|
||||||
|
++ optional (!x11Support) "--without-x"
|
||||||
|
++ optional alsaSupport "--with-alsa-prefix=${attrs.alsaLib.out}/lib";
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "SDL-${version}";
|
name = "SDL-${version}";
|
||||||
version = "1.2.15";
|
version = "1.2.15";
|
||||||
@ -28,36 +47,28 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
propagatedBuildInputs = [ ]
|
||||||
propagatedBuildInputs =
|
++ optionals (x11Support && !stdenv.isDarwin) [ libXext libICE libXrandr ]
|
||||||
optionals x11Support [ libXext libICE libXrandr ] ++
|
++ optional stdenv.isLinux libcap
|
||||||
optional alsaSupport alsaLib ++
|
++ optionals openglSupport [ libGL libGLU ]
|
||||||
optional stdenv.isLinux libcap ++
|
++ optional alsaSupport alsaLib
|
||||||
optionals openglSupport [ libGL libGLU ] ++
|
++ optional pulseaudioSupport libpulseaudio
|
||||||
optional pulseaudioSupport libpulseaudio ++
|
++ optional stdenv.isDarwin Cocoa;
|
||||||
optional stdenv.isDarwin Cocoa;
|
|
||||||
|
|
||||||
buildInputs = let
|
buildInputs = [ libiconv ]
|
||||||
notMingw = !hostPlatform.isMinGW;
|
++ optionals (x11Support && stdenv.isDarwin) [ libXext libICE libXrandr ]
|
||||||
in optional notMingw audiofile
|
++ optional (!hostPlatform.isMinGW) audiofile
|
||||||
++ optionals stdenv.isDarwin [ OpenGL CoreAudio CoreServices AudioUnit Kernel ]
|
++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
|
||||||
++ [ libiconv ];
|
|
||||||
|
|
||||||
# XXX: By default, SDL wants to dlopen() PulseAudio, in which case
|
configureFlags = configureFlagsFun { inherit alsaLib; };
|
||||||
# we must arrange to add it to its RPATH; however, `patchelf' seems
|
|
||||||
# to fail at doing this, hence `--disable-pulseaudio-shared'.
|
crossAttrs = {
|
||||||
configureFlags = [
|
configureFlags = configureFlagsFun { alsaLib = alsaLib.crossDrv; };
|
||||||
"--disable-oss"
|
};
|
||||||
"--disable-video-x11-xme"
|
|
||||||
"--disable-x11-shared"
|
|
||||||
"--disable-alsa-shared"
|
|
||||||
"--enable-rpath"
|
|
||||||
"--disable-pulseaudio-shared"
|
|
||||||
"--disable-osmesa-shared"
|
|
||||||
] ++ optional (!x11Support) "--without-x"
|
|
||||||
++ optional (alsaSupport && hostPlatform != buildPlatform) "--with-alsa-prefix=${alsaLib.out}/lib";
|
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
./find-headers.patch
|
||||||
|
|
||||||
# Fix window resizing issues, e.g. for xmonad
|
# Fix window resizing issues, e.g. for xmonad
|
||||||
# Ticket: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
|
# Ticket: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
@ -75,6 +86,11 @@ stdenv.mkDerivation rec {
|
|||||||
url = "http://hg.libsdl.org/SDL/raw-rev/95abff7adcc2";
|
url = "http://hg.libsdl.org/SDL/raw-rev/95abff7adcc2";
|
||||||
sha256 = "0i8x0kx0pw12ld5bfxhyzs466y3c0n9dscw1ijhq1b96r72xyhqq";
|
sha256 = "0i8x0kx0pw12ld5bfxhyzs466y3c0n9dscw1ijhq1b96r72xyhqq";
|
||||||
})
|
})
|
||||||
|
# https://bugzilla.libsdl.org/show_bug.cgi?id=1769
|
||||||
|
(fetchpatch {
|
||||||
|
url = "http://hg.libsdl.org/SDL/raw-rev/91ad7b43317a";
|
||||||
|
sha256 = "15g537vbl2my4mfrjxfkcx9ri6bk2gjvaqj650rjdxwk2nkdkn4b";
|
||||||
|
})
|
||||||
# Workaround X11 bug to allow changing gamma
|
# Workaround X11 bug to allow changing gamma
|
||||||
# Ticket: https://bugs.freedesktop.org/show_bug.cgi?id=27222
|
# Ticket: https://bugs.freedesktop.org/show_bug.cgi?id=27222
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
@ -92,10 +108,20 @@ stdenv.mkDerivation rec {
|
|||||||
url = "http://hg.libsdl.org/SDL/raw-rev/bbfb41c13a87";
|
url = "http://hg.libsdl.org/SDL/raw-rev/bbfb41c13a87";
|
||||||
sha256 = "1336g7waaf1c8yhkz11xbs500h8bmvabh4h437ax8l1xdwcppfxv";
|
sha256 = "1336g7waaf1c8yhkz11xbs500h8bmvabh4h437ax8l1xdwcppfxv";
|
||||||
})
|
})
|
||||||
./find-headers.patch
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postFixup = ''moveToOutput share/aclocal "$dev" '';
|
postInstall = ''
|
||||||
|
moveToOutput share/aclocal "$dev"
|
||||||
|
'';
|
||||||
|
|
||||||
|
# See the same place in the expression for SDL2
|
||||||
|
postFixup = ''
|
||||||
|
for lib in $out/lib/*.so* ; do
|
||||||
|
if [[ -L "$lib" ]]; then
|
||||||
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):${lib.makeLibraryPath propagatedBuildInputs}" "$lib"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
|
@ -11,19 +11,23 @@
|
|||||||
, libiconv
|
, libiconv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
# OSS is no longer supported, for it's much crappier than ALSA and
|
# NOTE: When editing this expression see if the same change applies to
|
||||||
# PulseAudio.
|
# SDL expression too
|
||||||
assert !stdenv.isDarwin -> alsaSupport || pulseaudioSupport;
|
|
||||||
|
|
||||||
assert openglSupport -> (stdenv.isDarwin || libGL != null && x11Support);
|
with lib;
|
||||||
|
|
||||||
|
assert !stdenv.isDarwin -> alsaSupport || pulseaudioSupport;
|
||||||
|
assert openglSupport -> (stdenv.isDarwin || x11Support && libGL != null);
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
configureFlagsFun = attrs: [
|
configureFlagsFun = attrs: [
|
||||||
"--disable-oss" "--disable-x11-shared" "--disable-wayland-shared"
|
"--disable-oss"
|
||||||
"--disable-pulseaudio-shared" "--disable-alsa-shared"
|
] ++ optional (!x11Support) "--without-x"
|
||||||
] ++ lib.optional alsaSupport "--with-alsa-prefix=${attrs.alsaLib.out}/lib"
|
++ optional alsaSupport "--with-alsa-prefix=${attrs.alsaLib.out}/lib";
|
||||||
++ lib.optional (!x11Support) "--without-x";
|
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "SDL2-${version}";
|
name = "SDL2-${version}";
|
||||||
version = "2.0.8";
|
version = "2.0.8";
|
||||||
@ -34,35 +38,29 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
outputBin = "dev"; # sdl-config
|
||||||
|
|
||||||
patches = [ ./find-headers.patch ];
|
patches = [ ./find-headers.patch ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
propagatedBuildInputs = [ libiconv ]
|
||||||
propagatedBuildInputs = lib.optionals x11Support [ libICE libXi libXScrnSaver libXcursor libXinerama libXext libXrandr libXxf86vm ] ++
|
++ optional dbusSupport dbus
|
||||||
lib.optionals waylandSupport [ wayland wayland-protocols libxkbcommon ] ++
|
++ optional udevSupport udev
|
||||||
lib.optional pulseaudioSupport libpulseaudio
|
++ optionals x11Support [ libICE libXi libXScrnSaver libXcursor libXinerama libXext libXrandr libXxf86vm ]
|
||||||
++ [ libiconv ];
|
++ optionals waylandSupport [ wayland wayland-protocols libxkbcommon ]
|
||||||
|
++ optional alsaSupport alsaLib
|
||||||
|
++ optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
buildInputs = [ audiofile ] ++
|
buildInputs = [ audiofile ]
|
||||||
lib.optional openglSupport libGL ++
|
++ optional openglSupport libGL
|
||||||
lib.optional alsaSupport alsaLib ++
|
++ optional ibusSupport ibus
|
||||||
lib.optional dbusSupport dbus ++
|
++ optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ];
|
||||||
lib.optional udevSupport udev ++
|
|
||||||
lib.optional ibusSupport ibus ++
|
|
||||||
lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ];
|
|
||||||
|
|
||||||
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
|
|
||||||
dontDisableStatic = true;
|
|
||||||
|
|
||||||
# /build/SDL2-2.0.7/src/video/wayland/SDL_waylandevents.c:41:10: fatal error:
|
# /build/SDL2-2.0.7/src/video/wayland/SDL_waylandevents.c:41:10: fatal error:
|
||||||
# pointer-constraints-unstable-v1-client-protocol.h: No such file or directory
|
# pointer-constraints-unstable-v1-client-protocol.h: No such file or directory
|
||||||
enableParallelBuilding = false;
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
# XXX: By default, SDL wants to dlopen() PulseAudio, in which case
|
|
||||||
# we must arrange to add it to its RPATH; however, `patchelf' seems
|
|
||||||
# to fail at doing this, hence `--disable-pulseaudio-shared'.
|
|
||||||
configureFlags = configureFlagsFun { inherit alsaLib; };
|
configureFlags = configureFlagsFun { inherit alsaLib; };
|
||||||
|
|
||||||
crossAttrs = {
|
crossAttrs = {
|
||||||
@ -75,6 +73,28 @@ stdenv.mkDerivation rec {
|
|||||||
moveToOutput bin/sdl2-config "$dev"
|
moveToOutput bin/sdl2-config "$dev"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# SDL is weird in that instead of just dynamically linking with
|
||||||
|
# libraries when you `--enable-*` (or when `configure` finds) them
|
||||||
|
# it `dlopen`s them at runtime. In principle, this means it can
|
||||||
|
# ignore any missing optional dependencies like alsa, pulseaudio,
|
||||||
|
# some x11 libs, wayland, etc if they are missing on the system
|
||||||
|
# and/or work with wide array of versions of said libraries. In
|
||||||
|
# nixpkgs, however, we don't need any of that. Moreover, since we
|
||||||
|
# don't have a global ld-cache we have to stuff all the propagated
|
||||||
|
# libraries into rpath by hand or else some applications that use
|
||||||
|
# SDL API that requires said libraries will fail to start.
|
||||||
|
#
|
||||||
|
# You can grep SDL sources with `grep -rE 'SDL_(NAME|.*_SYM)'` to
|
||||||
|
# confirm that they actually use most of the `propagatedBuildInputs`
|
||||||
|
# from above in this way. This is pretty weird.
|
||||||
|
postFixup = ''
|
||||||
|
for lib in $out/lib/*.so* ; do
|
||||||
|
if [[ -L "$lib" ]]; then
|
||||||
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):${lib.makeLibraryPath propagatedBuildInputs}" "$lib"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
|
||||||
passthru = { inherit openglSupport; };
|
passthru = { inherit openglSupport; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user