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