mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPackages
|
|
, docbook_xsl
|
|
, fetchFromGitHub
|
|
, glib
|
|
, gobject-introspection
|
|
, gtk-doc
|
|
, meson
|
|
, mesonEmulatorHook
|
|
, ninja
|
|
, pkg-config
|
|
, withDocs ? stdenv.hostPlatform.emulatorAvailable buildPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "playerctl";
|
|
version = "2.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "playerctl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-OiGKUnsKX0ihDRceZoNkcZcEAnz17h2j2QUOSVcxQEY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xsl
|
|
gobject-introspection
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
] ++ lib.optionals (withDocs && !stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
mesonEmulatorHook
|
|
];
|
|
buildInputs = [ glib ];
|
|
|
|
mesonFlags = [
|
|
(lib.mesonBool "bash-completions" true)
|
|
(lib.mesonBool "zsh-completions" true)
|
|
(lib.mesonBool "gtk-doc" withDocs)
|
|
];
|
|
|
|
meta = with 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;
|
|
mainProgram = "playerctl";
|
|
};
|
|
}
|