mpdscribble: mpd_clientlib -> libmpdclient
This commit is contained in:
parent
f14da185ef
commit
def34bb170
@ -1,22 +1,38 @@
|
|||||||
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, boost, libgcrypt, systemd, mpd_clientlib, curl }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, pkg-config
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, boost
|
||||||
|
, curl
|
||||||
|
, libgcrypt
|
||||||
|
, libmpdclient
|
||||||
|
, systemd
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mpdscribble";
|
pname = "mpdscribble";
|
||||||
version = "0.23";
|
version = "0.23";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url =
|
url = "https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
|
||||||
"https://www.musicpd.org/download/mpdscribble/${version}/mpdscribble-${version}.tar.xz";
|
|
||||||
sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
|
sha256 = "0s66zqscb44p88cl3kcv5jkjcqsskcnrv7xgrjhzrchf2kcpwf53";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
nativeBuildInputs = [ pkg-config meson ninja ];
|
||||||
buildInputs = [ mpd_clientlib curl boost libgcrypt systemd ];
|
buildInputs = [
|
||||||
|
libmpdclient
|
||||||
|
curl
|
||||||
|
boost
|
||||||
|
libgcrypt
|
||||||
|
systemd
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Music Player Daemon (MPD) client which submits information about tracks being played to a scrobbler (e.g. last.fm)";
|
description = "A MPD client which submits info about tracks being played to a scrobbler";
|
||||||
homepage = "https://www.musicpd.org/clients/mpdscribble/";
|
homepage = "https://www.musicpd.org/clients/mpdscribble/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.sohalt ];
|
maintainers = [ maintainers.sohalt ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user