2018-12-18 12:01:49 -08:00
|
|
|
{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gtk-doc, docbook_xsl, gobject-introspection }:
|
2016-02-21 22:55:03 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "playerctl";
|
2020-08-11 03:42:32 -07:00
|
|
|
version = "2.2.1";
|
2016-02-21 22:55:03 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acrisci";
|
|
|
|
repo = "playerctl";
|
|
|
|
rev = "v${version}";
|
2020-08-11 03:42:32 -07:00
|
|
|
sha256 = "17hi33sw3663qz5v54bqqil31sgkrlxkb2l5bgqk87pac6x2wnbz";
|
2016-02-21 22:55:03 -08:00
|
|
|
};
|
|
|
|
|
2018-12-18 12:01:49 -08:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gtk-doc docbook_xsl gobject-introspection ];
|
2018-09-17 08:29:58 -07:00
|
|
|
buildInputs = [ glib ];
|
2016-02-21 22:55:03 -08:00
|
|
|
|
2020-06-12 19:30:46 -07:00
|
|
|
mesonFlags = [ "-Dbash-completions=true" ];
|
|
|
|
|
2016-02-21 22:55:03 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command-line utility and library for controlling media players that implement MPRIS";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/acrisci/playerctl";
|
2016-02-21 22:55:03 -08:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ puffnfresh ];
|
2018-12-18 13:00:00 -08:00
|
|
|
broken = stdenv.hostPlatform.isDarwin;
|
2016-02-21 22:55:03 -08:00
|
|
|
};
|
|
|
|
}
|