about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/ncmpc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/ncmpc/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/ncmpc/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/ncmpc/default.nix b/nixpkgs/pkgs/applications/audio/ncmpc/default.nix
new file mode 100644
index 000000000000..e397534d126c
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/ncmpc/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, glib
+, ncurses
+, libmpdclient
+, gettext
+, boost
+, pcreSupport ? false, pcre ? null
+}:
+
+with lib;
+
+assert pcreSupport -> pcre != null;
+
+stdenv.mkDerivation rec {
+  pname = "ncmpc";
+  version = "0.45";
+
+  src = fetchFromGitHub {
+    owner  = "MusicPlayerDaemon";
+    repo   = "ncmpc";
+    rev    = "v${version}";
+    sha256 = "sha256-KDSHbEZ2PJLEIlXqPvBQ2ZPWno+IoajTjkl9faAXIko=";
+  };
+
+  buildInputs = [ glib ncurses libmpdclient boost ]
+    ++ optional pcreSupport pcre;
+  nativeBuildInputs = [ meson ninja pkg-config gettext ];
+
+  mesonFlags = [
+    "-Dlirc=disabled"
+    "-Ddocumentation=disabled"
+  ] ++ 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 ];
+  };
+}