* Fix an infinite recursion in scons.

svn path=/nixpkgs/trunk/; revision=23464
This commit is contained in:
Eelco Dolstra 2010-08-26 13:30:25 +00:00
parent 6e0911c3cb
commit a9da4153c4

View File

@ -1,10 +1,11 @@
{stdenv, fetchurl, python, makeWrapper}:
let
name = "scons";
version = "2.0.1";
name = "scons";
version = "2.0.1";
in
stdenv.mkDerivation rec {
stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {