2017-06-08 21:03:56 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mpd_clientlib }:
|
2013-09-23 06:41:04 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mpc";
|
2017-06-08 21:03:56 -07:00
|
|
|
version = "0.28";
|
2013-09-23 06:41:04 -07:00
|
|
|
|
2017-06-08 21:03:56 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MusicPlayerDaemon";
|
|
|
|
repo = "mpc";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1g8i4q5xsqdhidyjpvj6hzbhxacv27cb47ndv9k68whd80c5f9n9";
|
2013-09-23 06:41:04 -07:00
|
|
|
};
|
2014-09-13 15:49:32 -07:00
|
|
|
|
|
|
|
buildInputs = [ mpd_clientlib ];
|
|
|
|
|
2017-06-08 21:03:56 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-19 08:52:01 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-09-23 06:41:04 -07:00
|
|
|
description = "A minimalist command line interface to MPD";
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.musicpd.org/clients/mpc/;
|
2015-07-19 08:52:01 -07:00
|
|
|
license = licenses.gpl2;
|
2017-06-08 21:03:56 -07:00
|
|
|
maintainers = with maintainers; [ algorith ];
|
2015-07-19 08:52:01 -07:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2013-09-23 06:41:04 -07:00
|
|
|
};
|
2014-01-25 06:19:36 -08:00
|
|
|
}
|