This patch adds the cmus console music player.

svn path=/nixpkgs/trunk/; revision=24738
This commit is contained in:
Peter Simons 2010-11-17 15:03:12 +00:00
parent ad9d05d909
commit 63f114c3dd
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,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";
};
}

View File

@ -5248,6 +5248,8 @@ let
amarok = newScope pkgs.kde4 ../applications/audio/amarok { };
cmus = callPackage ../applications/audio/cmus { };
amsn = callPackage ../applications/networking/instant-messengers/amsn {
libstdcpp = gcc33.gcc;
};