nixpkgs/pkgs/tools/audio/playerctl/default.nix
R. RyanTM 0ffe5fac72 playerctl: 0.5.0 -> 0.6.0
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.

These checks were done:

- built on NixOS
- ran ‘/nix/store/p0qhcjwl78w4rwdqwkh7zzifpc2v60p3-playerctl-0.6.0/bin/playerctl -h’ got 0 exit code
- ran ‘/nix/store/p0qhcjwl78w4rwdqwkh7zzifpc2v60p3-playerctl-0.6.0/bin/playerctl --help’ got 0 exit code
- ran ‘/nix/store/p0qhcjwl78w4rwdqwkh7zzifpc2v60p3-playerctl-0.6.0/bin/playerctl -v’ and found version 0.6.0
- ran ‘/nix/store/p0qhcjwl78w4rwdqwkh7zzifpc2v60p3-playerctl-0.6.0/bin/playerctl --version’ and found version 0.6.0
- found 0.6.0 with grep in /nix/store/p0qhcjwl78w4rwdqwkh7zzifpc2v60p3-playerctl-0.6.0
- directory tree listing: https://gist.github.com/0d015359b346703f7434ab698e4ad496
2018-04-20 01:02:01 -07:00

31 lines
851 B
Nix

{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome2, glib,
pkgconfig, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "playerctl-${version}";
version = "0.6.0";
src = fetchFromGitHub {
owner = "acrisci";
repo = "playerctl";
rev = "v${version}";
sha256 = "1sxy87syrfk485f2x556rl567j6rph4ss0xahf04bv26bzj3mqrp";
};
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 ];
};
}