a5b611defc
"This release should be used instead of 3.0.1. This release fixes
several issues." - http://scons.org/scons-301-is-available.html
More than 90% of the 346 rebuilds succeed without any problems (I've
tested it against aeff3080d0
). As far as I
can tell most of the problematic packages either failed before the
upgrade or for a reason that is unrelated to this SCons update. But it
is possible that this'll cause a few regressions, I'll try to watch out
for build failures on Hydra.
The attribute sconsPackages.scons_3_0_0 is still available in case this
breaks anything.
19 lines
468 B
Nix
19 lines
468 B
Nix
{ callPackage, stdenv }:
|
|
|
|
let
|
|
mkScons = args: callPackage (import ./common.nix args) { };
|
|
in {
|
|
scons_2_5_1 = mkScons {
|
|
version = "2.5.1";
|
|
sha256 = "1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b";
|
|
};
|
|
scons_3_0_0 = mkScons {
|
|
version = "3.0.0";
|
|
sha256 = "05jjykllk4icnq6gfrkgkbc4ggxm7983q6r33mrhpilqbd02ylqg";
|
|
};
|
|
scons_3_0_1 = mkScons {
|
|
version = "3.0.1";
|
|
sha256 = "0wzid419mlwqw9llrg8gsx4nkzhqy16m4m40r0xnh6cwscw5wir4";
|
|
};
|
|
}
|