mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
Merge pull request #97541 from Sohalt/mpdscribble-0.23
mpdscribble: 0.22 -> 0.23
This commit is contained in:
commit
d5d6bd7f08
@ -7865,6 +7865,12 @@
|
|||||||
githubId = 3371635;
|
githubId = 3371635;
|
||||||
name = "Salar Rahmanian";
|
name = "Salar Rahmanian";
|
||||||
};
|
};
|
||||||
|
sohalt = {
|
||||||
|
email = "nixos@sohalt.net";
|
||||||
|
github = "sohalt";
|
||||||
|
githubId = 2157287;
|
||||||
|
name = "sohalt";
|
||||||
|
};
|
||||||
solson = {
|
solson = {
|
||||||
email = "scott@solson.me";
|
email = "scott@solson.me";
|
||||||
github = "solson";
|
github = "solson";
|
||||||
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mpdscribble";
|
pname = "mpdscribble";
|
||||||
version = "0.22";
|
version = "0.23";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url =
|
url =
|
||||||
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.bz2";
|
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
|
||||||
sha256 = "0hgb7xh3w455m00lpldwkyrc5spjn3q1pl2ry3kf7w3hiigjpphw";
|
sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ meson ninja pkgconfig ];
|
||||||
buildInputs = [ mpd_clientlib curl glib ];
|
buildInputs = [ mpd_clientlib curl boost libgcrypt systemd ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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/";
|
homepage = "https://www.musicpd.org/clients/mpdscribble/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.matthiasbeyer ];
|
maintainers = [ maintainers.sohalt ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user