mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
45 lines
1,020 B
Nix
45 lines
1,020 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, glib
|
|
, ncurses
|
|
, libmpdclient
|
|
, gettext
|
|
, boost
|
|
, pcreSupport ? false, pcre ? null
|
|
}:
|
|
|
|
assert pcreSupport -> pcre != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncmpc";
|
|
version = "0.49";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MusicPlayerDaemon";
|
|
repo = "ncmpc";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-rqIlQQ9RhFrhPwUd9dZmMZiqwFinNoV46VaJ3pbyUI8=";
|
|
};
|
|
|
|
buildInputs = [ glib ncurses libmpdclient boost ]
|
|
++ lib.optional pcreSupport pcre;
|
|
nativeBuildInputs = [ meson ninja pkg-config gettext ];
|
|
|
|
mesonFlags = [
|
|
"-Dlirc=disabled"
|
|
"-Ddocumentation=disabled"
|
|
] ++ lib.optional (!pcreSupport) "-Dregex=disabled";
|
|
|
|
meta = with 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 ];
|
|
mainProgram = "ncmpc";
|
|
};
|
|
}
|