about summary refs log tree commit diff
path: root/pkgs/applications/audio/cmus/default.nix
blob: abcdc5d330c7c02cbfdbe0520a0b5ddfe19aa5ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, ncurses, pkgconfig, alsaLib, flac, libmad, ffmpeg, libvorbis, mpc, mp4v2 }:

stdenv.mkDerivation rec {
  name = "cmus-2.3.3";

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

  buildInputs = [ ncurses pkgconfig alsaLib flac libmad ffmpeg libvorbis mpc mp4v2 ];

  src = fetchurl {
    url = mirror://sourceforge/cmus/cmus-v2.3.3.tar.bz2;
    md5 = "220e875e4210a6b54882114ef7094a79";
  };

  meta = {
    description = "cmus is a small, fast and powerful console music player for Linux and *BSD";
    homepage = http://cmus.sourceforge.net;
    license = "GPLv2";
  };
}