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

28 lines
867 B
Nix
Raw Normal View History

{ 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 {
pname = "playerctl";
2020-12-03 06:49:29 +00:00
version = "2.3.1";
2016-02-22 06:55:03 +00:00
src = fetchFromGitHub {
owner = "acrisci";
repo = "playerctl";
rev = "v${version}";
2020-12-03 06:49:29 +00:00
sha256 = "00z5c6amlxd3q42l7x8i0ngl627dxglgg5vikbbhjp9ms34xbxdn";
2016-02-22 06:55:03 +00:00
};
nativeBuildInputs = [ meson ninja pkg-config gtk-doc docbook_xsl gobject-introspection ];
buildInputs = [ glib ];
2016-02-22 06:55:03 +00:00
2020-06-13 02:30:46 +00:00
mesonFlags = [ "-Dbash-completions=true" ];
meta = with lib; {
2016-02-22 06:55:03 +00:00
description = "Command-line utility and library for controlling media players that implement MPRIS";
homepage = "https://github.com/acrisci/playerctl";
2016-02-22 06:55:03 +00:00
license = licenses.lgpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ puffnfresh ];
broken = stdenv.hostPlatform.isDarwin;
2016-02-22 06:55:03 +00:00
};
}