nixpkgs/pkgs/tools/audio/playerctl/default.nix

26 lines
818 B
Nix
Raw Normal View History

2018-12-18 23:01:49 +03:00
{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gtk-doc, docbook_xsl, gobject-introspection }:
2016-02-22 09:55:03 +03:00
stdenv.mkDerivation rec {
pname = "playerctl";
2020-02-06 16:07:04 +03:00
version = "2.1.1";
2016-02-22 09:55:03 +03:00
src = fetchFromGitHub {
owner = "acrisci";
repo = "playerctl";
rev = "v${version}";
2020-02-06 16:07:04 +03:00
sha256 = "03f3645ssqf8dpkyzj9rlglrzh0840sflalskx9s4i03bgq3v4r9";
2016-02-22 09:55:03 +03:00
};
2018-12-18 23:01:49 +03:00
nativeBuildInputs = [ meson ninja pkgconfig gtk-doc docbook_xsl gobject-introspection ];
buildInputs = [ glib ];
2016-02-22 09:55:03 +03: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 ];
broken = stdenv.hostPlatform.isDarwin;
2016-02-22 09:55:03 +03:00
};
}