2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome2, glib,
|
2016-02-22 06:55:03 +00:00
|
|
|
pkgconfig, gobjectIntrospection }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-05 01:47:35 +01:00
|
|
|
name = "playerctl-${version}";
|
2018-07-18 16:50:12 +01:00
|
|
|
version = "0.6.1";
|
2016-02-22 06:55:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acrisci";
|
|
|
|
repo = "playerctl";
|
|
|
|
rev = "v${version}";
|
2018-07-18 16:50:12 +01:00
|
|
|
sha256 = "0jnylj5d6i29c5y6yjxg1a88r2qfbac5pj95f2aljjkfh9428jbb";
|
2016-02-22 06:55:03 +00:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-02-22 06:55:03 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
which autoconf automake libtool gnome2.gtkdoc glib
|
2016-02-22 06:55:03 +00:00
|
|
|
gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|