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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
866 B
Nix
Raw Normal View History

{ lib, stdenv, meson, ninja, fetchFromGitHub, glib, pkg-config, gtk-doc, docbook_xsl, gobject-introspection }:
2016-02-22 09:55:03 +03:00
stdenv.mkDerivation rec {
pname = "playerctl";
2021-09-23 10:30:23 +03:00
version = "2.4.1";
2016-02-22 09:55:03 +03:00
src = fetchFromGitHub {
owner = "acrisci";
repo = "playerctl";
rev = "v${version}";
2021-09-23 10:30:23 +03:00
sha256 = "sha256-OiGKUnsKX0ihDRceZoNkcZcEAnz17h2j2QUOSVcxQEY=";
2016-02-22 09:55:03 +03:00
};
nativeBuildInputs = [ meson ninja pkg-config gtk-doc docbook_xsl gobject-introspection ];
buildInputs = [ glib ];
2016-02-22 09:55:03 +03:00
2020-06-13 05:30:46 +03:00
mesonFlags = [ "-Dbash-completions=true" ];
meta = with lib; {
2016-02-22 09:55:03 +03:00
description = "Command-line utility and library for controlling media players that implement MPRIS";
homepage = "https://github.com/acrisci/playerctl";
2016-02-22 09:55:03 +03:00
license = licenses.lgpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ puffnfresh ];
broken = stdenv.hostPlatform.isDarwin;
2016-02-22 09:55:03 +03:00
};
}