nixpkgs/pkgs/tools/misc/mpdscribble/default.nix

24 lines
770 B
Nix
Raw Normal View History

2015-03-14 10:47:11 +00:00
{ stdenv, fetchurl, mpd_clientlib, curl, glib, pkgconfig }:
stdenv.mkDerivation rec {
name = "mpdscribble-${version}";
version = "0.22";
src = fetchurl {
url =
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.bz2";
2015-03-14 10:47:11 +00:00
sha256 = "0hgb7xh3w455m00lpldwkyrc5spjn3q1pl2ry3kf7w3hiigjpphw";
};
2017-10-02 18:26:09 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ mpd_clientlib curl glib ];
2015-03-14 10:47:11 +00:00
meta = with stdenv.lib; {
description = "A Music Player Daemon (MPD) client which submits information about tracks beeing played to a scrobbler (e.g. last.fm)";
homepage = https://www.musicpd.org/clients/mpdscribble/;
2015-03-14 10:47:11 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux;
2015-03-14 10:47:11 +00:00
};
}