1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/tools/audio/playerctl/default.nix

29 lines
877 B
Nix
Raw Normal View History

{ stdenv, meson, ninja, fetchFromGitHub, glib, pkgconfig, gobject-introspection }:
2016-02-22 06:55:03 +00:00
stdenv.mkDerivation rec {
2016-04-05 01:47:35 +01:00
name = "playerctl-${version}";
version = "2.0.1";
2016-02-22 06:55:03 +00:00
src = fetchFromGitHub {
owner = "acrisci";
repo = "playerctl";
rev = "v${version}";
sha256 = "0j1fvcc80307ybl1z9l752sr4bcza2fmb8qdivpnm4xmm82faigb";
2016-02-22 06:55:03 +00:00
};
nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection ];
buildInputs = [ glib ];
2016-02-22 06:55:03 +00:00
# docs somehow crashes the install phase:
# https://github.com/acrisci/playerctl/issues/85
mesonFlags = [ "-Dgtk-doc=false" ];
2016-02-22 06:55:03 +00: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 ];
};
}