Merge pull request #97541 from Sohalt/mpdscribble-0.23

mpdscribble: 0.22 -> 0.23
This commit is contained in:
ajs124 2020-09-10 20:40:17 +02:00 committed by GitHub
commit d5d6bd7f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 8 deletions

View File

@ -7865,6 +7865,12 @@
githubId = 3371635;
name = "Salar Rahmanian";
};
sohalt = {
email = "nixos@sohalt.net";
github = "sohalt";
githubId = 2157287;
name = "sohalt";
};
solson = {
email = "scott@solson.me";
github = "solson";

View File

@ -1,23 +1,23 @@
{ stdenv, fetchurl, mpd_clientlib, curl, glib, pkgconfig }:
{ stdenv, fetchurl, meson, ninja, pkgconfig, boost, libgcrypt, systemd, mpd_clientlib, curl }:
stdenv.mkDerivation rec {
pname = "mpdscribble";
version = "0.22";
version = "0.23";
src = fetchurl {
url =
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.bz2";
sha256 = "0hgb7xh3w455m00lpldwkyrc5spjn3q1pl2ry3kf7w3hiigjpphw";
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ mpd_clientlib curl glib ];
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ mpd_clientlib curl boost libgcrypt systemd ];
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)";
description = "A Music Player Daemon (MPD) client which submits information about tracks being played to a scrobbler (e.g. last.fm)";
homepage = "https://www.musicpd.org/clients/mpdscribble/";
license = licenses.gpl2;
maintainers = [ maintainers.matthiasbeyer ];
maintainers = [ maintainers.sohalt ];
platforms = platforms.linux;
};
}