summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/mp/mpdris2/package.nix
blob: 8cccd6c2fba1327451f89623117750c35c9f1467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  lib,
  autoreconfHook,
  fetchFromGitHub,
  gettext,
  glib,
  gobject-introspection,
  intltool,
  libnotify,
  python3Packages,
  wrapGAppsHook3,
}:

python3Packages.buildPythonApplication (finalAttrs: {
  pname = "mpDris2";
  version = "0.9.1";
  pyproject = false;

  src = fetchFromGitHub {
    owner = "eonpatapon";
    repo = "mpDris2";
    tag = finalAttrs.version;
    hash = "sha256-1Y6K3z8afUXeKhZzeiaEF3yqU0Ef7qdAj9vAkRlD2p8=";
  };

  preConfigure = ''
    intltoolize -f
  '';

  nativeBuildInputs = [
    autoreconfHook
    gettext
    gobject-introspection
    intltool
    wrapGAppsHook3
  ];

  buildInputs = [
    glib
    libnotify
  ];

  dependencies = with python3Packages; [
    dbus-python
    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 = with lib.maintainers; [ acidbong ];
    platforms = lib.platforms.unix;
    mainProgram = "mpDris2";
  };
})