a73049b175
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/playerctl/versions.
31 lines
851 B
Nix
31 lines
851 B
Nix
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome2, glib,
|
|
pkgconfig, gobjectIntrospection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "playerctl-${version}";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "playerctl";
|
|
rev = "v${version}";
|
|
sha256 = "0jnylj5d6i29c5y6yjxg1a88r2qfbac5pj95f2aljjkfh9428jbb";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
which autoconf automake libtool gnome2.gtkdoc glib
|
|
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 ];
|
|
};
|
|
}
|