1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/audio/ncmpc/default.nix

39 lines
998 B
Nix
Raw Normal View History

2017-10-02 19:23:56 +01:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, ncurses
2019-11-09 08:43:57 +00:00
, mpd_clientlib, gettext, boost
, pcreSupport ? false
, pcre ? null
}:
with stdenv.lib;
assert pcreSupport -> pcre != null;
2014-03-25 14:45:24 +00:00
2017-11-03 23:43:27 +00:00
stdenv.mkDerivation rec {
pname = "ncmpc";
2020-05-06 02:31:46 +01:00
version = "0.38";
2014-03-25 14:45:24 +00:00
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "ncmpc";
rev = "v${version}";
2020-05-06 02:31:46 +01:00
sha256 = "1kidpd1xrfax3v31q93r9g9b7jd841476q47wgd94h1a86b70gs9";
2014-03-25 14:45:24 +00:00
};
2019-11-09 08:43:57 +00:00
buildInputs = [ glib ncurses mpd_clientlib boost ]
++ optional pcreSupport pcre;
2017-10-02 19:23:56 +01:00
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
mesonFlags = [
"-Dlirc=disabled"
"-Ddocumentation=disabled"
2019-11-09 08:43:57 +00:00
] ++ optional (!pcreSupport) "-Dregex=disabled";
2014-03-25 14:45:24 +00:00
meta = with stdenv.lib; {
description = "Curses-based interface for MPD (music player daemon)";
homepage = "https://www.musicpd.org/clients/ncmpc/";
2014-03-25 14:45:24 +00:00
license = licenses.gpl2Plus;
platforms = platforms.all;
2017-10-02 19:23:56 +01:00
maintainers = with maintainers; [ fpletz ];
2014-03-25 14:45:24 +00:00
};
}