2021-02-10 06:03:53 -08:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, fixDarwinDylibNames
|
|
|
|
}:
|
2011-12-04 17:32:25 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libmpdclient";
|
2021-02-10 06:03:53 -08:00
|
|
|
version = "2.19";
|
2013-09-23 06:41:04 -07:00
|
|
|
|
2017-06-08 21:54:29 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MusicPlayerDaemon";
|
2021-02-10 06:03:53 -08:00
|
|
|
repo = pname;
|
2017-06-08 21:54:29 -07:00
|
|
|
rev = "v${version}";
|
2020-07-05 06:12:45 -07:00
|
|
|
sha256 = "01agvjscdxagw6jcfx0wg81c4b6p8rh0hp3slycmjs2b835kvmq2";
|
2011-12-04 17:32:25 -08:00
|
|
|
};
|
|
|
|
|
2018-01-30 22:50:20 -08:00
|
|
|
nativeBuildInputs = [ meson ninja ]
|
2021-01-14 23:07:56 -08:00
|
|
|
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2013-09-23 06:41:04 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2011-12-04 17:32:25 -08:00
|
|
|
description = "Client library for MPD (music player daemon)";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.musicpd.org/libs/libmpdclient/";
|
2021-02-10 06:03:53 -08:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ ehmry AndersonTorres ];
|
2015-04-17 07:38:13 -07:00
|
|
|
platforms = platforms.unix;
|
2011-12-04 17:32:25 -08:00
|
|
|
};
|
|
|
|
}
|