nixpkgs/pkgs/by-name/sp/spice-gtk/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

185 lines
4.3 KiB
Nix

{
lib,
stdenv,
fetchurl,
acl,
cyrus_sasl,
docbook_xsl,
libepoxy,
gettext,
gobject-introspection,
gst_all_1,
gtk-doc,
gtk3,
hwdata,
json-glib,
libcacard,
libcap_ng,
libdrm,
libjpeg_turbo,
libopus,
libsoup_3,
libusb1,
lz4,
meson,
mesonEmulatorHook,
ninja,
openssl,
perl,
phodav,
pixman,
pkg-config,
polkit,
python3,
spice-protocol,
usbredir,
vala,
wayland-protocols,
wayland-scanner,
zlib,
wrapGAppsHook3,
withPolkit ? stdenv.hostPlatform.isLinux,
}:
# If this package is built with polkit support (withPolkit=true),
# usb redirection requires spice-client-glib-usb-acl-helper to run setuid root.
# The helper confirms via polkit that the user has an active session,
# then adds a device acl entry for that user.
# Example NixOS config to create a setuid wrapper for the helper:
# security.wrappers.spice-client-glib-usb-acl-helper.source =
# "${pkgs.spice-gtk}/bin/spice-client-glib-usb-acl-helper";
# On non-NixOS installations, make a setuid copy of the helper
# outside the store and adjust PATH to find the setuid version.
# If this package is built without polkit support (withPolkit=false),
# usb redirection requires read-write access to usb devices.
# This can be granted by adding users to a custom group like "usb"
# and using a udev rule to put all usb devices in that group.
# Example NixOS config:
# users.groups.usb = {};
# users.users.dummy.extraGroups = [ "usb" ];
# services.udev.extraRules = ''
# KERNEL=="*", SUBSYSTEMS=="usb", MODE="0664", GROUP="usb"
# '';
stdenv.mkDerivation rec {
pname = "spice-gtk";
version = "0.42";
outputs = [
"out"
"dev"
"devdoc"
"man"
];
src = fetchurl {
url = "https://www.spice-space.org/download/gtk/${pname}-${version}.tar.xz";
sha256 = "sha256-k4ARfxgRrR+qGBLLZgJHm2KQ1KDYzEQtREJ/f2wOelg=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs =
[
docbook_xsl
gettext
gobject-introspection
gtk-doc
meson
ninja
perl
pkg-config
python3
python3.pkgs.pyparsing
python3.pkgs.six
vala
wrapGAppsHook3
]
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
mesonEmulatorHook
]
++ lib.optionals stdenv.hostPlatform.isLinux [
wayland-scanner
];
buildInputs =
[
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
cyrus_sasl
libepoxy
gtk3
json-glib
libcacard
libjpeg_turbo
libopus
libsoup_3
libusb1
lz4
openssl
phodav
pixman
spice-protocol
usbredir
vala
zlib
]
++ lib.optionals withPolkit [
polkit
acl
]
++ lib.optionals stdenv.hostPlatform.isLinux [
libcap_ng
libdrm
wayland-protocols
];
PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "${placeholder "out"}/share/polkit-1/actions";
mesonFlags =
[
"-Dusb-acl-helper-dir=${placeholder "out"}/bin"
"-Dusb-ids-path=${hwdata}/share/hwdata/usb.ids"
]
++ lib.optionals (!withPolkit) [
"-Dpolkit=disabled"
]
++ lib.optionals (!stdenv.hostPlatform.isLinux) [
"-Dlibcap-ng=disabled"
"-Degl=disabled"
]
++ lib.optionals stdenv.hostPlatform.isMusl [
"-Dcoroutine=gthread" # Fixes "Function missing:makecontext"
];
postPatch = ''
# get rid of absolute path to helper in store so we can use a setuid wrapper
substituteInPlace src/usb-acl-helper.c \
--replace 'ACL_HELPER_PATH"/' '"'
# don't try to setcap/suid in a nix builder
substituteInPlace src/meson.build \
--replace "meson.add_install_script('../build-aux/setcap-or-suid'," \
"# meson.add_install_script('../build-aux/setcap-or-suid',"
patchShebangs subprojects/keycodemapdb/tools/keymap-gen
'';
meta = with lib; {
description = "GTK 3 SPICE widget";
longDescription = ''
spice-gtk is a GTK 3 SPICE widget. It features glib-based
objects for SPICE protocol parsing and a gtk widget for embedding
the SPICE display into other applications such as virt-manager.
Python bindings are available too.
'';
homepage = "https://www.spice-space.org/";
license = licenses.lgpl21;
maintainers = [ maintainers.xeji ];
platforms = platforms.unix;
};
}