lnav: fix compilation

nix-env -i lnav currently result of a failure:

    command_executor.cc:34:21: fatal error: pcrecpp.h: No such file or
    directory

This fixes by using pcre-cpp instead of pcre.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester
2016-11-24 11:48:43 +01:00
committed by Graham Christensen
parent e99228db30
commit 41ed3a8dd1

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pcre, sqlite, ncurses,
{ stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses,
readline, zlib, bzip2, autoconf, automake }:
stdenv.mkDerivation rec {
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
zlib
bzip2
ncurses
pcre
pcre-cpp
readline
sqlite
];