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