mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
39 lines
998 B
Nix
39 lines
998 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, ncurses
|
|
, mpd_clientlib, gettext, boost
|
|
, pcreSupport ? false
|
|
, pcre ? null
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
assert pcreSupport -> pcre != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncmpc";
|
|
version = "0.38";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MusicPlayerDaemon";
|
|
repo = "ncmpc";
|
|
rev = "v${version}";
|
|
sha256 = "1kidpd1xrfax3v31q93r9g9b7jd841476q47wgd94h1a86b70gs9";
|
|
};
|
|
|
|
buildInputs = [ glib ncurses mpd_clientlib boost ]
|
|
++ optional pcreSupport pcre;
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
|
|
|
|
mesonFlags = [
|
|
"-Dlirc=disabled"
|
|
"-Ddocumentation=disabled"
|
|
] ++ optional (!pcreSupport) "-Dregex=disabled";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Curses-based interface for MPD (music player daemon)";
|
|
homepage = "https://www.musicpd.org/clients/ncmpc/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|