mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
32e7f391fc
Announcement: https://scons.org/scons-304-is-available.html Changelog: https://raw.githubusercontent.com/SConsProject/scons/rel_3.0.4/src/CHANGES.txt There where no regressions and no deprecations in this release (at least it does not break any additional builds in nixpkgs).
15 lines
338 B
Nix
15 lines
338 B
Nix
{ callPackage }:
|
|
|
|
let
|
|
mkScons = args: callPackage (import ./common.nix args) { };
|
|
in {
|
|
scons_3_0_1 = mkScons {
|
|
version = "3.0.1";
|
|
sha256 = "0wzid419mlwqw9llrg8gsx4nkzhqy16m4m40r0xnh6cwscw5wir4";
|
|
};
|
|
scons_latest = mkScons {
|
|
version = "3.0.4";
|
|
sha256 = "1jzvcbn77ayibd7zhzs7vz316f34mxb8akfrxccjni6i09mpv96n";
|
|
};
|
|
}
|