Skip to content

Commit 41ed3a8

Browse files
vdemeestergrahamc
authored andcommittedNov 28, 2016
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>
1 parent e99228d commit 41ed3a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎pkgs/tools/misc/lnav/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, fetchFromGitHub, pcre, sqlite, ncurses,
1+
{ stdenv, fetchFromGitHub, pcre-cpp, sqlite, ncurses,
22
readline, zlib, bzip2, autoconf, automake }:
33

44
stdenv.mkDerivation rec {
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
1919
zlib
2020
bzip2
2121
ncurses
22-
pcre
22+
pcre-cpp
2323
readline
2424
sqlite
2525
];

0 commit comments

Comments
 (0)
Please sign in to comment.