2021-02-12 03:35:49 -08:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, boost
|
|
|
|
, curl
|
|
|
|
, libgcrypt
|
|
|
|
, libmpdclient
|
|
|
|
, systemd
|
|
|
|
}:
|
2015-03-14 03:47:11 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mpdscribble";
|
2020-09-09 06:29:05 -07:00
|
|
|
version = "0.23";
|
2015-03-14 03:47:11 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-12 03:35:49 -08:00
|
|
|
url = "https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
|
2020-09-09 06:29:05 -07:00
|
|
|
sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
|
2015-03-14 03:47:11 -07:00
|
|
|
};
|
|
|
|
|
2021-02-12 03:35:49 -08:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja ];
|
|
|
|
buildInputs = [
|
|
|
|
libmpdclient
|
|
|
|
curl
|
|
|
|
boost
|
|
|
|
libgcrypt
|
|
|
|
systemd
|
|
|
|
];
|
2015-03-14 03:47:11 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2021-02-12 03:35:49 -08:00
|
|
|
description = "A MPD client which submits info about tracks being played to a scrobbler";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.musicpd.org/clients/mpdscribble/";
|
2021-02-12 03:35:49 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2020-09-09 06:29:05 -07:00
|
|
|
maintainers = [ maintainers.sohalt ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = platforms.linux;
|
2015-03-14 03:47:11 -07:00
|
|
|
};
|
|
|
|
}
|