summary refs log tree commit diff
path: root/pkgs/applications/audio/moc/default.nix
blob: e822e4057417d5909b23e94680a0b3a414c32cde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, ncurses, pkgconfig, alsaLib, flac, libmad, speex, ffmpeg
, libvorbis, mpc, libsndfile, jackaudio, db, libmodplug, timidity, libid3tag
, libtool
}:

stdenv.mkDerivation rec {
  name = "moc-${version}";
  version = "2.5.0-beta2";

  src = fetchurl {
    url = "http://ftp.daper.net/pub/soft/moc/unstable/moc-${version}.tar.bz2";
    sha256 = "486d50584c3fb0067b8c03af54e44351633a7740b18dc3b7358322051467034c";
  };

  configurePhase = "./configure prefix=$out";

  buildInputs = [
    ncurses pkgconfig alsaLib flac libmad speex ffmpeg libvorbis
    mpc libsndfile jackaudio db libmodplug timidity libid3tag libtool
  ];

  meta = {
    description = "MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use.";
    homepage = http://moc.daper.net/;
    license = stdenv.lib.licenses.gpl2;
  };
}