Updating from trunk. I had to do some changes to make it fit.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23500
This commit is contained in:
Lluís Batlle i Rossell
2010-08-29 11:09:23 +00:00
116 changed files with 4065 additions and 500 deletions
@@ -1,12 +1,16 @@
{stdenv, fetchurl, python, makeWrapper}:
stdenv.mkDerivation rec {
version = "1.3.0";
name = "scons-" + version;
let
name = "scons";
version = "2.0.1";
in
stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {
url = "mirror://sourceforge/scons/${name}.tar.gz";
sha256 = "4bde47b9a40fe767f089f5996d56b6e85a2d4929309b9c07a2dff363a78b0002";
url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
sha256 = "0qk74nrnm9qlijrq6gmy8cyhjgp0gis4zx44divnr8n487d5308a";
};
propagatedBuildInputs = [python makeWrapper];
@@ -16,6 +20,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://scons.org/";
description = "An improved, cross-platform substitute for Make";
license = "MIT";
longDescription =
'' SCons is an Open Source software construction tool. Think of
SCons as an improved, cross-platform substitute for the classic