2014-07-22 20:06:44 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, pkgconfig, alsaLib, flac, libmad, speex, ffmpeg
|
2015-06-27 07:17:52 +00:00
|
|
|
, libvorbis, libmpc, libsndfile, libjack2, db, libmodplug, timidity, libid3tag
|
2014-07-22 20:06:44 +00:00
|
|
|
, libtool
|
|
|
|
}:
|
2013-12-14 21:16:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "moc-${version}";
|
2016-12-11 18:50:37 +00:00
|
|
|
version = "2.5.2";
|
2013-12-14 21:16:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-04 20:28:41 +00:00
|
|
|
url = "http://ftp.daper.net/pub/soft/moc/stable/moc-${version}.tar.bz2";
|
2016-12-11 18:50:37 +00:00
|
|
|
sha256 = "026v977kwb0wbmlmf6mnik328plxg8wykfx9ryvqhirac0aq39pk";
|
2013-12-14 21:16:18 +00:00
|
|
|
};
|
|
|
|
|
2016-11-17 20:35:05 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2014-07-22 20:06:44 +00:00
|
|
|
buildInputs = [
|
2016-11-17 20:35:05 +00:00
|
|
|
ncurses alsaLib flac libmad speex ffmpeg libvorbis libmpc libsndfile libjack2
|
|
|
|
db libmodplug timidity libid3tag libtool
|
2014-07-22 20:06:44 +00:00
|
|
|
];
|
2013-12-14 21:16:18 +00:00
|
|
|
|
2014-09-04 20:28:41 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "An ncurses console audio player designed to be powerful and easy to use";
|
2013-12-14 21:16:18 +00:00
|
|
|
homepage = http://moc.daper.net/;
|
2014-09-04 20:28:41 +00:00
|
|
|
license = licenses.gpl2;
|
2014-10-12 11:09:49 +00:00
|
|
|
maintainers = with maintainers; [ pSub jagajaga ];
|
2014-09-04 20:28:41 +00:00
|
|
|
platforms = platforms.linux;
|
2013-12-14 21:16:18 +00:00
|
|
|
};
|
|
|
|
}
|