3
0
Fork 0
forked from mirrors/nixpkgs

source-highlight: unbreak by using boost 1.53

One of the tests started failing when boost was bumped from 1.53 to 1.54
(in July). Instead of skipping the tests, fix it by using boost 1.53.
This commit is contained in:
Bjørn Forsman 2013-09-04 19:49:09 +02:00
parent 9ffc2dff98
commit 99942d1fad

View file

@ -1737,7 +1737,10 @@ let
socat = callPackage ../tools/networking/socat { };
sourceHighlight = callPackage ../tools/text/source-highlight { };
sourceHighlight = callPackage ../tools/text/source-highlight {
# Boost 1.54 causes the "test_regexranges" test to fail
boost = boost153;
};
socat2pre = lowPrio (builderDefsPackage ../tools/networking/socat/2.0.0-b3.nix {
inherit fetchurl stdenv openssl;