Fix missing include

svn path=/nixpkgs/trunk/; revision=20148
This commit is contained in:
Michael Raskin 2010-02-21 08:24:00 +00:00
parent 2ced6cbbec
commit bfc5bc58e7

View File

@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
buildInputs = [getopt];
preBuild = ''
sed -e '/#include <map>/i#include <stdio.h>' -i src/re/Pattern.h
'';
makeFlags = ["PREFIX=$out"];
meta = {