2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, meson, ninja, fetchFromGitHub, glib, pkg-config, gtk-doc, docbook_xsl, gobject-introspection }:
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "playerctl";
|
2021-09-23 07:30:23 +00:00
|
|
|
version = "2.4.1";
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acrisci";
|
|
|
|
repo = "playerctl";
|
|
|
|
rev = "v${version}";
|
2021-09-23 07:30:23 +00:00
|
|
|
sha256 = "sha256-OiGKUnsKX0ihDRceZoNkcZcEAnz17h2j2QUOSVcxQEY=";
|
2016-02-22 06:55:03 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config gtk-doc docbook_xsl gobject-introspection ];
|
2018-09-17 15:29:58 +00:00
|
|
|
buildInputs = [ glib ];
|
2016-02-22 06:55:03 +00:00
|
|
|
|
2020-06-13 02:30:46 +00:00
|
|
|
mesonFlags = [ "-Dbash-completions=true" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-22 06:55:03 +00:00
|
|
|
description = "Command-line utility and library for controlling media players that implement MPRIS";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/acrisci/playerctl";
|
2016-02-22 06:55:03 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|