mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
cadffcfe50
checked with diffoscope+difflog and launching the programs i have fixed that issue in my other gir PRs
55 lines
929 B
Nix
55 lines
929 B
Nix
{ lib
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, glib
|
|
, gobject-introspection
|
|
, intltool
|
|
, libnotify
|
|
, python3
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
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
|
|
wrapGAppsHook
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|