nixpkgs/pkgs/tools/audio/mpdris2/default.nix
Jan Tojnar eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
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)
2024-04-27 02:23:22 +02:00

56 lines
960 B
Nix

{ lib
, autoreconfHook
, fetchFromGitHub
, glib
, gobject-introspection
, intltool
, libnotify
, python3
, wrapGAppsHook3
}:
python3.pkgs.buildPythonApplication rec {
pname = "mpDris2";
version = "0.9.1";
format = "other";
src = fetchFromGitHub {
owner = "eonpatapon";
repo = pname;
rev = version;
sha256 = "sha256-1Y6K3z8afUXeKhZzeiaEF3yqU0Ef7qdAj9vAkRlD2p8=";
};
preConfigure = ''
intltoolize -f
'';
nativeBuildInputs = [
autoreconfHook
gobject-introspection
intltool
wrapGAppsHook3
];
buildInputs = [
glib
libnotify
];
propagatedBuildInputs = with python3.pkgs; [
dbus-python
mpd2
mutagen
pygobject3
];
meta = with lib; {
description = "MPRIS 2 support for mpd";
homepage = "https://github.com/eonpatapon/mpDris2/";
license = licenses.gpl3;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
mainProgram = "mpDris2";
};
}