moc: update from 2.5.0-beta2 to 2.5.0

also set platforms to linux, use default configurePhase and adopt it
This commit is contained in:
Pascal Wittmann 2014-09-04 22:28:41 +02:00
parent bf1493401b
commit 440d876b54

View File

@ -5,23 +5,23 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "moc-${version}"; name = "moc-${version}";
version = "2.5.0-beta2"; version = "2.5.0";
src = fetchurl { src = fetchurl {
url = "http://ftp.daper.net/pub/soft/moc/unstable/moc-${version}.tar.bz2"; url = "http://ftp.daper.net/pub/soft/moc/stable/moc-${version}.tar.bz2";
sha256 = "486d50584c3fb0067b8c03af54e44351633a7740b18dc3b7358322051467034c"; sha256 = "14b0g9jn12jzxsf292g64dc6frlxv99kaagsasmc8xmg80iab7nj";
}; };
configurePhase = "./configure prefix=$out";
buildInputs = [ buildInputs = [
ncurses pkgconfig alsaLib flac libmad speex ffmpeg libvorbis ncurses pkgconfig alsaLib flac libmad speex ffmpeg libvorbis
mpc libsndfile jack2 db libmodplug timidity libid3tag libtool mpc libsndfile jack2 db libmodplug timidity libid3tag libtool
]; ];
meta = { meta = with stdenv.lib; {
description = "An ncurses console audio player designed to be powerful and easy to use"; description = "An ncurses console audio player designed to be powerful and easy to use";
homepage = http://moc.daper.net/; homepage = http://moc.daper.net/;
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
}; };
} }