nixpkgs/pkgs/development/tools/build-managers/scons/default.nix

31 lines
933 B
Nix
Raw Normal View History

{stdenv, fetchurl, python2Packages}:
let
name = "scons";
2017-01-02 17:18:35 +00:00
version = "2.5.1";
in python2Packages.buildPythonApplication {
name = "${name}-${version}";
src = fetchurl {
url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
2017-01-02 17:18:35 +00:00
sha256 = "1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b";
};
# No tests
doCheck = false;
meta = {
homepage = "http://scons.org/";
description = "An improved, cross-platform substitute for Make";
license = stdenv.lib.licenses.mit;
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.
'';
platforms = stdenv.lib.platforms.all;
};
}