2018-12-18 20:01:49 +00:00
|
|
|
{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gtk-doc, docbook_xsl, gobject-introspection }:
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-05 01:47:35 +01:00
|
|
|
name = "playerctl-${version}";
|
2019-04-02 09:28:54 +01:00
|
|
|
version = "2.0.2";
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acrisci";
|
|
|
|
repo = "playerctl";
|
|
|
|
rev = "v${version}";
|
2019-04-02 09:28:54 +01:00
|
|
|
sha256 = "1f3njnpd52djx3dmhh9a8p5a67f0jmr1gbk98icflr2q91149gjz";
|
2016-02-22 06:55:03 +00:00
|
|
|
};
|
|
|
|
|
2018-12-18 20:01:49 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gtk-doc docbook_xsl gobject-introspection ];
|
2018-09-17 16:29:58 +01:00
|
|
|
buildInputs = [ glib ];
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
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 ];
|
2018-12-18 21:00:00 +00:00
|
|
|
broken = stdenv.hostPlatform.isDarwin;
|
2016-02-22 06:55:03 +00:00
|
|
|
};
|
|
|
|
}
|