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)
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, intltool
|
|
, avahi
|
|
, curl
|
|
, dbus-glib
|
|
, gettext
|
|
, gtk3
|
|
, libmpdclient
|
|
, libsoup
|
|
, libxml2
|
|
, taglib
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ario";
|
|
version = "1.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz";
|
|
sha256 = "16nhfb3h5pc7flagfdz7xy0iq6kvgy6h4bfpi523i57rxvlfshhl";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gettext
|
|
intltool
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
avahi
|
|
curl
|
|
dbus-glib
|
|
gtk3
|
|
libmpdclient
|
|
libsoup
|
|
libxml2
|
|
taglib
|
|
];
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
for file in $out/lib/ario/plugins/*.dylib; do
|
|
ln -s $file $out/lib/ario/plugins/$(basename $file .dylib).so
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GTK client for MPD (Music player daemon)";
|
|
mainProgram = "ario";
|
|
homepage = "https://ario-player.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.garrison ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|