47cc83dcc8
Build fails with: ../playerctl/playerctl-player.c:274:19: error: use of undeclared identifier 'CLOCK_MONOTONIC' clock_gettime(CLOCK_MONOTONIC, &player->priv->cached_position_monotonic);
25 lines
828 B
Nix
25 lines
828 B
Nix
{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gtk-doc, docbook_xsl, gobject-introspection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "playerctl-${version}";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "playerctl";
|
|
rev = "v${version}";
|
|
sha256 = "0j1fvcc80307ybl1z9l752sr4bcza2fmb8qdivpnm4xmm82faigb";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gtk-doc docbook_xsl gobject-introspection ];
|
|
buildInputs = [ glib ];
|
|
|
|
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;
|
|
};
|
|
}
|