2019-11-29 10:20:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, mpd_clientlib, sphinx, libiconv }:
|
2013-09-23 15:41:04 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mpc";
|
2019-11-28 12:53:40 +01:00
|
|
|
version = "0.33";
|
2013-09-23 15:41:04 +02:00
|
|
|
|
2017-06-09 06:03:56 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MusicPlayerDaemon";
|
|
|
|
repo = "mpc";
|
|
|
|
rev = "v${version}";
|
2019-11-28 12:53:40 +01:00
|
|
|
sha256 = "1qbi0i9cq54rj8z2kapk8x8g1jkw2jz781niwb9i7kw4xfhvy5zx";
|
2013-09-23 15:41:04 +02:00
|
|
|
};
|
2014-09-14 00:49:32 +02:00
|
|
|
|
2019-11-29 10:20:00 +01:00
|
|
|
buildInputs = [ mpd_clientlib ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
|
2014-09-14 00:49:32 +02:00
|
|
|
|
2019-06-06 11:41:13 +02:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig sphinx ];
|
2017-06-09 06:03:56 +02:00
|
|
|
|
2015-07-19 17:52:01 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-09-23 15:41:04 +02:00
|
|
|
description = "A minimalist command line interface to MPD";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.musicpd.org/clients/mpc/";
|
2015-07-19 17:52:01 +02:00
|
|
|
license = licenses.gpl2;
|
2017-06-09 06:03:56 +02:00
|
|
|
maintainers = with maintainers; [ algorith ];
|
2015-07-19 17:52:01 +02:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2013-09-23 15:41:04 +02:00
|
|
|
};
|
2014-01-25 15:19:36 +01:00
|
|
|
}
|