about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-05-09 16:01:44 +0000
committerPeter Simons <simons@cryp.to>2010-05-09 16:01:44 +0000
commitfd8c6ae43dca2f795660e9b67e770a14bf70f685 (patch)
tree17934f96d17133cc688b88e87dcfc04229cf3f82 /pkgs/development/tools/build-managers
parent3303106e97a75327e1d69122346f8aa29cce2416 (diff)
Moved 'maintainers' attribute into the meta section of the expression.
I've also set the 'platforms' attribute to ensure that Hydra actually
builds these packages. Thanks to LluĂ­s Batlle i Rossell for pointing out
these mistakes.

svn path=/nixpkgs/trunk/; revision=21688
Diffstat (limited to 'pkgs/development/tools/build-managers')
-rw-r--r--pkgs/development/tools/build-managers/scons/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/scons/default.nix b/pkgs/development/tools/build-managers/scons/default.nix
index 2e72047354c10..3e549fe7bbe70 100644
--- a/pkgs/development/tools/build-managers/scons/default.nix
+++ b/pkgs/development/tools/build-managers/scons/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
        SCons is an easier, more reliable and faster way to build
        software.
     '';
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
-
-  maintainers = [ stdenv.lib.maintainers.simons ];
 }