2014-07-22 22:06:44 +02:00
|
|
|
{ stdenv, fetchurl, ncurses, pkgconfig, alsaLib, flac, libmad, speex, ffmpeg
|
2014-07-31 12:47:17 +02:00
|
|
|
, libvorbis, mpc, libsndfile, jack2, db, libmodplug, timidity, libid3tag
|
2014-07-22 22:06:44 +02:00
|
|
|
, libtool
|
|
|
|
}:
|
2013-12-14 22:16:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "moc-${version}";
|
2014-09-04 22:28:41 +02:00
|
|
|
version = "2.5.0";
|
2013-12-14 22:16:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-04 22:28:41 +02:00
|
|
|
url = "http://ftp.daper.net/pub/soft/moc/stable/moc-${version}.tar.bz2";
|
|
|
|
sha256 = "14b0g9jn12jzxsf292g64dc6frlxv99kaagsasmc8xmg80iab7nj";
|
2013-12-14 22:16:18 +01:00
|
|
|
};
|
|
|
|
|
2014-07-22 22:06:44 +02:00
|
|
|
buildInputs = [
|
|
|
|
ncurses pkgconfig alsaLib flac libmad speex ffmpeg libvorbis
|
2014-07-31 12:47:17 +02:00
|
|
|
mpc libsndfile jack2 db libmodplug timidity libid3tag libtool
|
2014-07-22 22:06:44 +02:00
|
|
|
];
|
2013-12-14 22:16:18 +01:00
|
|
|
|
2014-09-04 22:28:41 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "An ncurses console audio player designed to be powerful and easy to use";
|
2013-12-14 22:16:18 +01:00
|
|
|
homepage = http://moc.daper.net/;
|
2014-09-04 22:28:41 +02:00
|
|
|
license = licenses.gpl2;
|
2014-10-12 13:09:49 +02:00
|
|
|
maintainers = with maintainers; [ pSub jagajaga ];
|
2014-09-04 22:28:41 +02:00
|
|
|
platforms = platforms.linux;
|
2013-12-14 22:16:18 +01:00
|
|
|
};
|
|
|
|
}
|