mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:54:10 +00:00
f561acc48e
Unfortunately the tarball was modified for the official release and "nix-store -r --check $(nix-instantiate -A scons.src)" did not catch this (not sure why ATM). Thanks @pbogdan for noticing this :)
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 = "06lv3pmdz5l23rx3kqsi1k712bdl36i942hgbjh209s94mpb7f72";
|
|
};
|
|
}
|