nixpkgs/pkgs/applications/audio/ncmpcpp/default.nix

26 lines
804 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses, curl, taglib, fftw, mpd_clientlib, pkgconfig
2014-11-09 12:03:34 +00:00
, libiconvOrEmpty, boost, readline }:
stdenv.mkDerivation rec {
2014-12-23 21:44:33 +00:00
version = "0.6.2";
name = "ncmpcpp-${version}";
src = fetchurl {
url = "http://ncmpcpp.rybczak.net/stable/ncmpcpp-${version}.tar.bz2";
2014-12-23 21:44:33 +00:00
sha256 = "1mrd6m6ph0fscxp9x96ipxh6ai7w0n1miapcfqrqfy058qx5zbck";
};
2014-11-09 12:03:34 +00:00
configureFlags = "BOOST_LIB_SUFFIX=";
buildInputs = [ ncurses curl taglib fftw mpd_clientlib boost pkgconfig readline ]
++ libiconvOrEmpty;
meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = http://unkart.ovh.org/ncmpcpp/;
license = licenses.gpl2Plus;
2014-12-23 21:44:33 +00:00
maintainers = with maintainers; [ lovek323 mornfall koral ];
platforms = platforms.all;
};
}