2015-03-14 10:47:11 +00:00
|
|
|
{ stdenv, fetchurl, mpd_clientlib, curl, glib, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mpdscribble";
|
2015-03-14 10:47:11 +00:00
|
|
|
version = "0.22";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url =
|
2018-06-28 19:43:35 +01:00
|
|
|
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.bz2";
|
2015-03-14 10:47:11 +00:00
|
|
|
sha256 = "0hgb7xh3w455m00lpldwkyrc5spjn3q1pl2ry3kf7w3hiigjpphw";
|
|
|
|
};
|
|
|
|
|
2017-10-02 19:26:09 +01: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)";
|
2019-04-20 21:48:29 +01:00
|
|
|
homepage = https://www.musicpd.org/clients/mpdscribble/;
|
2015-03-14 10:47:11 +00:00
|
|
|
license = licenses.gpl2;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.linux;
|
2015-03-14 10:47:11 +00:00
|
|
|
};
|
|
|
|
}
|