summary refs log tree commit diff
path: root/pkgs/tools/audio/playerctl/default.nix
blob: 15e7a772bbd1b1602cb20c498373f16f1fee4ea1 (plain) (blame)
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
{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gobject-introspection }:

stdenv.mkDerivation rec {
  name = "playerctl-${version}";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "acrisci";
    repo = "playerctl";
    rev = "v${version}";
    sha256 = "0jnylj5d6i29c5y6yjxg1a88r2qfbac5pj95f2aljjkfh9428jbb";
  };

  nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection ];
  buildInputs = [ glib ];

  # docs somehow crashes the install phase:
  # https://github.com/acrisci/playerctl/issues/85
  mesonFlags = [ "-Dgtk-doc=false" ];

  meta = with stdenv.lib; {
    description = "Command-line utility and library for controlling media players that implement MPRIS";
    homepage = https://github.com/acrisci/playerctl;
    license = licenses.lgpl3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ puffnfresh ];
  };
}