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