2016-10-17 12:31:27 +01:00
|
|
|
{stdenv, fetchurl, python2Packages}:
|
2006-02-02 12:59:41 +00:00
|
|
|
|
2010-08-26 13:24:16 +01:00
|
|
|
let
|
2010-08-26 14:30:25 +01:00
|
|
|
name = "scons";
|
2017-01-02 17:18:35 +00:00
|
|
|
version = "2.5.1";
|
2016-10-17 12:31:27 +01:00
|
|
|
in python2Packages.buildPythonApplication {
|
2010-08-26 13:24:16 +01:00
|
|
|
name = "${name}-${version}";
|
2009-06-30 19:51:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-08-26 13:24:16 +01:00
|
|
|
url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
|
2017-01-02 17:18:35 +00:00
|
|
|
sha256 = "1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b";
|
2009-06-30 19:51:01 +01:00
|
|
|
};
|
2016-10-17 12:31:27 +01:00
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
2014-01-20 12:29:28 +00:00
|
|
|
|
2008-07-18 21:11:25 +01:00
|
|
|
meta = {
|
2008-06-18 23:48:54 +01:00
|
|
|
homepage = "http://scons.org/";
|
|
|
|
description = "An improved, cross-platform substitute for Make";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2012-03-13 08:29:18 +00:00
|
|
|
longDescription = ''
|
|
|
|
SCons is an Open Source software construction tool. Think of
|
|
|
|
SCons as an improved, cross-platform substitute for the classic
|
|
|
|
Make utility with integrated functionality similar to
|
|
|
|
autoconf/automake and compiler caches such as ccache. In short,
|
|
|
|
SCons is an easier, more reliable and faster way to build
|
|
|
|
software.
|
2008-06-18 23:48:54 +01:00
|
|
|
'';
|
2010-05-09 17:01:44 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2006-02-02 12:59:41 +00:00
|
|
|
};
|
|
|
|
}
|