2016-10-17 04:31:27 -07:00
|
|
|
{stdenv, fetchurl, python2Packages}:
|
2006-02-02 04:59:41 -08:00
|
|
|
|
2010-08-26 05:24:16 -07:00
|
|
|
let
|
2010-08-26 06:30:25 -07:00
|
|
|
name = "scons";
|
2016-04-13 05:29:19 -07:00
|
|
|
version = "2.5.0";
|
2016-10-17 04:31:27 -07:00
|
|
|
in python2Packages.buildPythonApplication {
|
2010-08-26 05:24:16 -07:00
|
|
|
name = "${name}-${version}";
|
2009-06-30 11:51:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-08-26 05:24:16 -07:00
|
|
|
url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
|
2016-04-13 05:29:19 -07:00
|
|
|
sha256 = "1sdcj8iapfzmlq7098yas40qwl6khsiwydbxv33sw81wy93nnagb";
|
2009-06-30 11:51:01 -07:00
|
|
|
};
|
2016-10-17 04:31:27 -07:00
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
2014-01-20 04:29:28 -08:00
|
|
|
|
2008-07-18 13:11:25 -07:00
|
|
|
meta = {
|
2008-06-18 15:48:54 -07:00
|
|
|
homepage = "http://scons.org/";
|
|
|
|
description = "An improved, cross-platform substitute for Make";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2012-03-13 01:29:18 -07: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 15:48:54 -07:00
|
|
|
'';
|
2010-05-09 09:01:44 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2006-02-02 04:59:41 -08:00
|
|
|
};
|
|
|
|
}
|