2014-05-26 20:20:47 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, ncurses, mpd_clientlib, libintlOrEmpty }:
|
2014-03-25 18:45:24 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-07-12 19:54:11 +04:00
|
|
|
version = "0.23";
|
2014-03-25 18:45:24 +04:00
|
|
|
name = "ncmpc-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-07-07 14:49:35 +04:00
|
|
|
url = "http://www.musicpd.org/download/ncmpc/0/ncmpc-${version}.tar.xz";
|
2014-07-12 19:54:11 +04:00
|
|
|
sha256 = "d7b30cefaf5c74a5d8ab18ab8275e0102ae12e8ee6d6f8144f8e4cc9a97b5de4";
|
2014-03-25 18:45:24 +04:00
|
|
|
};
|
|
|
|
|
2014-05-26 20:20:47 +04:00
|
|
|
buildInputs = [ pkgconfig glib ncurses mpd_clientlib ]
|
|
|
|
++ libintlOrEmpty;
|
2014-03-25 18:45:24 +04:00
|
|
|
|
2014-05-27 18:54:58 +04:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2014-03-25 18:45:24 +04:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Curses-based interface for MPD (music player daemon)";
|
|
|
|
homepage = http://www.musicpd.org/clients/ncmpc/;
|
|
|
|
license = licenses.gpl2Plus;
|
2014-03-28 00:32:54 +04:00
|
|
|
maintainers = with maintainers; [ _1126 ];
|
2014-03-25 18:45:24 +04:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|