ncmpc: mpd_clientlib -> libmpdclient

This commit is contained in:
AndersonTorres 2021-02-12 08:33:14 -03:00
parent 3455bc1522
commit 942c12eadc

View File

@ -1,7 +1,15 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, glib, ncurses { lib
, mpd_clientlib, gettext, boost , stdenv
, pcreSupport ? false , fetchFromGitHub
, pcre ? null , meson
, ninja
, pkg-config
, glib
, ncurses
, libmpdclient
, gettext
, boost
, pcreSupport ? false, pcre ? null
}: }:
with lib; with lib;
@ -19,7 +27,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Qu41TL8KSKC9L25D6Z8bEbJUJQ9QI08grTGZ+0qGdUQ="; sha256 = "sha256-Qu41TL8KSKC9L25D6Z8bEbJUJQ9QI08grTGZ+0qGdUQ=";
}; };
buildInputs = [ glib ncurses mpd_clientlib boost ] buildInputs = [ glib ncurses libmpdclient boost ]
++ optional pcreSupport pcre; ++ optional pcreSupport pcre;
nativeBuildInputs = [ meson ninja pkg-config gettext ]; nativeBuildInputs = [ meson ninja pkg-config gettext ];