2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, boost, mpd_clientlib, ncurses, pkg-config, readline
|
2017-07-01 09:25:26 +01:00
|
|
|
, libiconv, icu, curl
|
2019-02-19 20:47:06 +00:00
|
|
|
, outputsSupport ? true # outputs screen
|
2015-02-08 21:58:32 +00:00
|
|
|
, visualizerSupport ? false, fftw ? null # visualizer screen
|
2019-02-19 20:47:06 +00:00
|
|
|
, clockSupport ? true # clock screen
|
2015-02-08 21:58:32 +00:00
|
|
|
, taglibSupport ? true, taglib ? null # tag editor
|
|
|
|
}:
|
2011-12-05 01:32:25 +00:00
|
|
|
|
2015-02-08 21:58:32 +00:00
|
|
|
assert visualizerSupport -> (fftw != null);
|
|
|
|
assert taglibSupport -> (taglib != null);
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2011-12-05 01:32:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ncmpcpp";
|
2021-01-30 17:48:35 +00:00
|
|
|
version = "0.9.2";
|
2011-12-05 01:32:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-23 04:20:00 +00:00
|
|
|
url = "https://rybczak.net/ncmpcpp/stable/${pname}-${version}.tar.bz2";
|
2021-01-30 17:48:35 +00:00
|
|
|
sha256 = "sha256-+qv2FXyMsbJKBZryduFi+p+aO5zTgQxDuRKIYMk4Ohs=";
|
2011-12-05 01:32:25 +00:00
|
|
|
};
|
|
|
|
|
2015-02-08 21:58:32 +00:00
|
|
|
configureFlags = [ "BOOST_LIB_SUFFIX=" ]
|
|
|
|
++ optional outputsSupport "--enable-outputs"
|
|
|
|
++ optional visualizerSupport "--enable-visualizer --with-fftw"
|
|
|
|
++ optional clockSupport "--enable-clock"
|
|
|
|
++ optional taglibSupport "--with-taglib";
|
2014-11-09 12:03:34 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-06-01 01:35:10 +01:00
|
|
|
|
2017-07-01 09:25:26 +01:00
|
|
|
buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu curl ]
|
2015-02-08 21:58:32 +00:00
|
|
|
++ optional visualizerSupport fftw
|
2015-02-12 00:37:22 +00:00
|
|
|
++ optional taglibSupport taglib;
|
2011-12-05 01:32:25 +00:00
|
|
|
|
2015-02-08 21:58:32 +00:00
|
|
|
meta = {
|
|
|
|
description = "A featureful ncurses based MPD client inspired by ncmpc";
|
2020-12-23 04:20:00 +00:00
|
|
|
homepage = "https://rybczak.net/ncmpcpp/";
|
|
|
|
changelog = "https://github.com/ncmpcpp/ncmpcpp/blob/${version}/CHANGELOG.md";
|
2013-07-04 00:12:39 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ jfrankenau koral lovek323 ];
|
2017-07-01 09:25:26 +01:00
|
|
|
platforms = platforms.all;
|
2011-12-05 01:32:25 +00:00
|
|
|
};
|
|
|
|
}
|