Files
nixpkgs/pkgs/by-name/xp/xpra/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

299 lines
6.0 KiB
Nix

{
lib,
fetchFromGitHub,
pkg-config,
runCommand,
writeText,
wrapGAppsHook3,
withNvenc ? false,
atk,
cairo,
cudatoolkit,
cudaPackages,
ffmpeg,
gdk-pixbuf,
getopt,
glib,
gobject-introspection,
gst_all_1,
gtk3,
libappindicator,
libfakeXinerama,
librsvg,
libvpx,
libwebp,
systemd,
lz4,
nv-codec-headers-10,
nvidia_x11 ? null,
pam,
pandoc,
pango,
pulseaudioFull,
python3,
stdenv,
util-linux,
which,
x264,
x265,
libavif,
openh264,
libyuv,
xauth,
xdg-utils,
xorg,
xorgserver,
xxHash,
clang,
withHtml ? true,
xpra-html5,
udevCheckHook,
}@args:
let
inherit (python3.pkgs) cython buildPythonApplication;
xf86videodummy = xorg.xf86videodummy.overrideDerivation (p: {
patches = [
# patch provided by Xpra upstream
./0002-Constant-DPI.patch
# https://github.com/Xpra-org/xpra/issues/349
./0003-fix-pointer-limits.patch
];
});
xorgModulePaths = writeText "module-paths" ''
Section "Files"
ModulePath "${xorgserver}/lib/xorg/modules"
ModulePath "${xorgserver}/lib/xorg/modules/extensions"
ModulePath "${xorgserver}/lib/xorg/modules/drivers"
ModulePath "${xf86videodummy}/lib/xorg/modules/drivers"
EndSection
'';
nvencHeaders =
runCommand "nvenc-headers"
{
inherit nvidia_x11;
}
''
mkdir -p $out/include $out/lib/pkgconfig
cp ${nv-codec-headers-10}/include/ffnvcodec/nvEncodeAPI.h $out/include
substituteAll ${./nvenc.pc} $out/lib/pkgconfig/nvenc.pc
'';
nvjpegHeaders = runCommand "nvjpeg-headers" { } ''
mkdir -p $out/include $out/lib/pkgconfig
substituteAll ${cudaPackages.libnvjpeg.dev}/share/pkgconfig/nvjpeg.pc $out/lib/pkgconfig/nvjpeg.pc
'';
in
buildPythonApplication rec {
pname = "xpra";
version = "6.3.3";
format = "setuptools";
stdenv = if withNvenc then cudaPackages.backendStdenv else args.stdenv;
src = fetchFromGitHub {
owner = "Xpra-org";
repo = "xpra";
tag = "v${version}";
hash = "sha256-hk+C6I/QS6ihwmuNlnoNFipJ98SW6LO+Qa3Uh1h1Ji8=";
};
patches = [
./fix-41106.patch # https://github.com/NixOS/nixpkgs/issues/41106
./fix-122159.patch # https://github.com/NixOS/nixpkgs/issues/122159
];
postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
substituteInPlace xpra/platform/posix/features.py \
--replace-fail "/usr/bin/xdg-open" "${xdg-utils}/bin/xdg-open"
patchShebangs --build fs/bin/build_cuda_kernels.py
'';
INCLUDE_DIRS = "${pam}/include";
nativeBuildInputs = [
clang
gobject-introspection
pkg-config
wrapGAppsHook3
pandoc
udevCheckHook
]
++ lib.optional withNvenc cudatoolkit;
buildInputs =
with xorg;
[
libX11
libXcomposite
libXdamage
libXfixes
libXi
libxkbfile
libXrandr
libXrender
libXres
libXtst
xorgproto
]
++ (with gst_all_1; [
gst-libav
gst-vaapi
gst-plugins-ugly
gst-plugins-bad
gst-plugins-base
gst-plugins-good
gstreamer
])
++ [
atk.out
cairo
cython
ffmpeg
gdk-pixbuf
glib
gtk3
libappindicator
librsvg
libvpx
libwebp
lz4
pam
pango
x264
x265
libavif
openh264
libyuv
xxHash
systemd
]
++ lib.optional withNvenc [
nvencHeaders
nvjpegHeaders
];
propagatedBuildInputs =
with python3.pkgs;
(
[
cryptography
dbus-python
gst-python
idna
lz4
netifaces
numpy
opencv4
pam
paramiko
pillow
pycairo
pycrypto
pycups
pygobject3
pyinotify
pyopengl
pyopengl-accelerate
python-uinput
pyxdg
rencode
invoke
aioquic
uvloop
pyopenssl
]
++ lib.optionals withNvenc [
pycuda
pynvml
]
);
# error: 'import_cairo' defined but not used
env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
setupPyBuildFlags = [
"--with-Xdummy"
"--without-Xdummy_wrapper"
"--without-strict"
"--with-gtk3"
# Override these, setup.py checks for headers in /usr/* paths
"--with-pam"
"--with-vsock"
]
++ lib.optional withNvenc [
"--with-nvenc"
"--with-nvjpeg_encoder"
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=(
"''${gappsWrapperArgs[@]}"
--set XPRA_INSTALL_PREFIX "$out"
--set XPRA_COMMAND "$out/bin/xpra"
--set XPRA_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb"
--set XORG_CONFIG_PREFIX ""
--prefix LD_LIBRARY_PATH : ${libfakeXinerama}/lib
--prefix PATH : ${
lib.makeBinPath [
getopt
xorgserver
xauth
which
util-linux
pulseaudioFull
]
}
''
+ lib.optionalString withNvenc ''
--prefix LD_LIBRARY_PATH : ${nvidia_x11}/lib
''
+ ''
)
'';
postInstall = ''
# append module paths to xorg.conf
cat ${xorgModulePaths} >> $out/etc/xpra/xorg.conf
cat ${xorgModulePaths} >> $out/etc/xpra/xorg-uinput.conf
# make application icon visible to desktop environemnts
icon_dir="$out/share/icons/hicolor/64x64/apps"
mkdir -p "$icon_dir"
ln -sr "$out/share/icons/xpra.png" "$icon_dir"
''
+ lib.optionalString withHtml ''
ln -s ${xpra-html5}/share/xpra/www $out/share/xpra/www;
'';
# doCheck = false;
enableParallelBuilding = true;
passthru = {
inherit xf86videodummy;
updateScript = ./update.sh;
};
meta = {
homepage = "https://xpra.org/";
downloadPage = "https://xpra.org/src/";
description = "Persistent remote applications for X";
changelog = "https://github.com/Xpra-org/xpra/releases/tag/v${version}";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [
offline
numinit
mvnetbiz
lucasew
];
};
}