about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorVincent Demeester <vincent@sbr.pm>2016-11-24 11:48:43 +0100
committerGraham Christensen <graham@grahamc.com>2016-11-28 06:45:23 -0500
commit41ed3a8dd10b1e4babb045d06c2074042e13c7e0 (patch)
tree5f4dbd011d3298162011843061b4d4e31f7e80e1 /pkgs/tools/misc
parente99228db3014131255e19b88ba78e47b46a4bff8 (diff)
downloadnixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar.gz
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar.bz2
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar.lz
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar.xz
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.tar.zst
nixlib-41ed3a8dd10b1e4babb045d06c2074042e13c7e0.zip
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>
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/lnav/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/lnav/default.nix b/pkgs/tools/misc/lnav/default.nix
index a4a081aeadee..a3b40edb46ca 100644
--- a/pkgs/tools/misc/lnav/default.nix
+++ b/pkgs/tools/misc/lnav/default.nix
@@ -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
   ];