eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, openssl
|
|
, libplist
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
, avahi
|
|
, avahi-compat
|
|
, gst_all_1
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "uxplay";
|
|
version = "1.68.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FDH2";
|
|
repo = "UxPlay";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Ev+VXI37zLRQ3yqllJVo1JZK/U82HeB65Hi9+c0O8Ks=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/CMakeLists.txt \
|
|
--replace ".a" "${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
sed -i '/PKG_CONFIG_EXECUTABLE/d' renderers/CMakeLists.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
openssl
|
|
libplist
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
avahi
|
|
avahi-compat
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly
|
|
gst_all_1.gst-libav
|
|
];
|
|
|
|
meta = {
|
|
description = "AirPlay Unix mirroring server";
|
|
homepage = "https://github.com/FDH2/UxPlay";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ lib.maintainers.azuwis ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "uxplay";
|
|
};
|
|
})
|