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
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
gettext,
|
|
glib,
|
|
gobject-introspection,
|
|
intltool,
|
|
libnotify,
|
|
python3Packages,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mpDris2";
|
|
version = "0.9.1";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eonpatapon";
|
|
repo = "mpDris2";
|
|
tag = version;
|
|
hash = "sha256-1Y6K3z8afUXeKhZzeiaEF3yqU0Ef7qdAj9vAkRlD2p8=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
intltoolize -f
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gettext
|
|
gobject-introspection
|
|
intltool
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libnotify
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
dbus-python
|
|
mpd2
|
|
mutagen
|
|
pygobject3
|
|
];
|
|
|
|
# Python builder already uses makeWrapper, so we disable the hook
|
|
# and add its args to the existing ones for Python:
|
|
# https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-common-issues-double-wrapped
|
|
dontWrapGApps = true;
|
|
|
|
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
|
|
|
|
patches = [ ./fix-gettext-0.25.patch ];
|
|
|
|
meta = {
|
|
description = "MPRIS 2 support for mpd";
|
|
homepage = "https://github.com/eonpatapon/mpDris2/";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "mpDris2";
|
|
};
|
|
}
|