1 { lib, fetchFromGitHub, fetchpatch, python3Packages }:
2 python3Packages.buildPythonApplication rec {
6 src = fetchFromGitHub {
10 hash = "sha256-7VzGuz9CAUF6MRCEpj5z1FkZD19/Ic+YBukYQocvkr0=";
18 # Fix builds on sandboxed Darwin: https://github.com/SCons/scons/pull/4603
20 url = "https://github.com/SCons/scons/commit/2d5e3a40a613225b329776ab9dbd9abcd2d24222.patch";
21 hash = "sha256-N1xQOvsPTi7a2maEZJQVu6vJ9AoWMqDOsScXHp9KuXI=";
26 python3Packages.setuptools
29 setupHook = ./setup-hook.sh;
32 # expose the used python version so tools using this (and extensing scos
33 # with other python modules) can use the exact same python version.
34 inherit (python3Packages) python;
38 description = "Improved, cross-platform substitute for Make";
40 SCons is an Open Source software construction tool. Think of SCons as an
41 improved, cross-platform substitute for the classic Make utility with
42 integrated functionality similar to autoconf/automake and compiler caches
43 such as ccache. In short, SCons is an easier, more reliable and faster way
46 homepage = "https://scons.org/";
47 license = lib.licenses.mit;
48 maintainers = with lib.maintainers; [ AndersonTorres ];