GNU Source-Highlight 3.1.4.
svn path=/nixpkgs/trunk/; revision=26079
This commit is contained in:
parent
f1f647e6fc
commit
20111bb05a
@ -2,27 +2,31 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
name = "source-highlight";
|
name = "source-highlight";
|
||||||
version = "3.1.3";
|
version = "3.1.4";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "${name}-${version}";
|
name = "${name}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/src-highlite/${name}-${version}.tar.gz";
|
url = "mirror://gnu/src-highlite/${name}-${version}.tar.gz";
|
||||||
sha256 = "2d819f2ffdc8bb23a87635bdfbc51545db22605a8e544f66f86054b8075af0b5";
|
sha256 = "1jd30ansx2pld196lik6r85aifdhd0cav701vasf4ws8kc8zkcxc";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Help it find Boost::Regex.
|
||||||
|
preConfigure =
|
||||||
|
'' export ax_cv_boost_regex=yes
|
||||||
|
export link_regex=yes
|
||||||
|
export BOOST_REGEX_LIB=-lboost_regex
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [boost];
|
buildInputs = [boost];
|
||||||
doCheck = false; # The test suite fails with a trivial
|
doCheck = true;
|
||||||
# error, so I'll disable it for now.
|
|
||||||
# Whoever bumps this build to the next
|
|
||||||
# version, please re-enable it though!
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "render source code with syntax highlighting";
|
description = "GNU Source-Highlight, source code renderer with syntax highlighting";
|
||||||
homepage = "http://www.gnu.org/software/src-highlite/";
|
homepage = "http://www.gnu.org/software/src-highlite/";
|
||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
maintainers = [ ];
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
longDescription =
|
longDescription =
|
||||||
''
|
''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user