Unverified Commit d3c00988 authored by K900's avatar K900 Committed by GitHub
Browse files

slang: disable pcre module (#405722)

parents 1fdaba68 ca250b2e
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
  libiconv,
  libpng,
  ncurses,
  pcre,
  readline,
  zlib,
  writeScript,
@@ -36,7 +35,7 @@ stdenv.mkDerivation rec {
  '';

  configureFlags = [
    "--with-pcre=${pcre.dev}"
    "--without-pcre"
    "--with-png=${libpng.dev}"
    "--with-readline=${readline.dev}"
    "--with-z=${zlib.dev}"
@@ -44,7 +43,6 @@ stdenv.mkDerivation rec {

  buildInputs = [
    libpng
    pcre
    readline
    zlib
  ] ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ libiconv ];