3
0
Fork 0
forked from mirrors/nixpkgs

highlight: Update to 3.5

svn path=/nixpkgs/trunk/; revision=29064
This commit is contained in:
Shea Levy 2011-09-06 17:10:08 +00:00
parent eba95e013b
commit 9dd496c687
2 changed files with 11 additions and 10 deletions

View file

@ -1,20 +1,19 @@
{ stdenv, fetchurl, getopt }:
{ stdenv, fetchurl, getopt, lua, boost }:
stdenv.mkDerivation rec {
name = "highlight-2.6.10";
name = "highlight-3.5";
src = fetchurl {
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
sha256 = "18f2ki9pajxlp0aq4ingxj7m0cp7wlbc40xm25pnxc1yis9vlira";
sha256 = "0jpidd2fwn5mbrgzjmh53qvfmqqp6g0mah7i5zsf9bd71ga1lp28";
};
buildInputs = [getopt];
buildInputs = [ getopt lua boost ];
preBuild = ''
sed -e '/#include <map>/i#include <stdio.h>' -i src/re/Pattern.h
'';
makeFlags = ["PREFIX=$out"];
makeFlags = [
"PREFIX=$(out)"
"conf_dir=$(out)/etc/highlight/"
];
meta = {
description = "Source code highlighting tool";

View file

@ -812,7 +812,9 @@ let
hevea = callPackage ../tools/typesetting/hevea { };
highlight = callPackage ../tools/text/highlight { };
highlight = callPackage ../tools/text/highlight {
lua = lua5;
};
host = callPackage ../tools/networking/host { };