summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-03-13 08:29:18 +0000
committerPeter Simons <simons@cryp.to>2012-03-13 08:29:18 +0000
commite49110e221046f5a2af74131e537f8de9699cabf (patch)
tree65eddca640af921dc814ea766202c8d9743202e9 /pkgs/development/tools/build-managers
parentfadf3e1f75d42d7baa67d106abf12e7881f00253 (diff)
downloadnixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar.gz
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar.bz2
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar.lz
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar.xz
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.tar.zst
nixlib-e49110e221046f5a2af74131e537f8de9699cabf.zip
scons: updated to version 2.1.0
svn path=/nixpkgs/trunk/; revision=33030
Diffstat (limited to 'pkgs/development/tools/build-managers')
-rw-r--r--pkgs/development/tools/build-managers/scons/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/tools/build-managers/scons/default.nix b/pkgs/development/tools/build-managers/scons/default.nix
index 9d6ab6ba8159..ddd8927a9a4c 100644
--- a/pkgs/development/tools/build-managers/scons/default.nix
+++ b/pkgs/development/tools/build-managers/scons/default.nix
@@ -2,7 +2,7 @@
 
 let
   name = "scons";
-  version = "2.0.1";
+  version = "2.1.0";
 in
 
 stdenv.mkDerivation {
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/scons/${name}-${version}.tar.gz";
-    sha256 = "0qk74nrnm9qlijrq6gmy8cyhjgp0gis4zx44divnr8n487d5308a";
+    sha256 = "4139ed14f60dd2ebcd47c59984d14705636180eb27b3d1b2949489e514b1921d";
   };
 
   buildInputs = [python makeWrapper];
@@ -27,13 +27,13 @@ stdenv.mkDerivation {
     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
-       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.
+    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;
     maintainers = [ stdenv.lib.maintainers.simons ];