2015-12-05 05:13:18 -08:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, pkgconfig, alsaLib, flac, libmad, ffmpeg, libvorbis, libmpc, mp4v2, libcue, libpulseaudio}:
|
2010-11-17 07:03:12 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-11-17 07:20:57 -08:00
|
|
|
name = "cmus-${version}";
|
2015-12-05 05:13:18 -08:00
|
|
|
version = "2.7.0";
|
2010-11-17 07:03:12 -08:00
|
|
|
|
2015-12-05 05:13:18 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cmus";
|
|
|
|
repo = "cmus";
|
|
|
|
rev = "0306cc74c5073a85cf8619c61da5b94a3f863eaa";
|
|
|
|
sha256 = "18w9mznb843nzkrcqvshfha51mlpdl92zlvb5wfc5dpgrbf37728";
|
2010-11-17 07:03:12 -08:00
|
|
|
};
|
|
|
|
|
2013-03-14 06:50:29 -07:00
|
|
|
configurePhase = "./configure prefix=$out";
|
|
|
|
|
2015-05-27 12:42:15 -07:00
|
|
|
buildInputs = [ ncurses pkgconfig alsaLib flac libmad ffmpeg libvorbis libmpc mp4v2 libcue libpulseaudio ];
|
2013-03-14 06:50:29 -07:00
|
|
|
|
2010-11-17 07:03:12 -08:00
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Small, fast and powerful console music player for Linux and *BSD";
|
2014-11-14 13:18:16 -08:00
|
|
|
homepage = https://cmus.github.io/;
|
2010-11-17 07:20:57 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-12-05 05:13:18 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.oxij ];
|
2010-11-17 07:03:12 -08:00
|
|
|
};
|
|
|
|
}
|