about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/scons
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2008-07-18 20:11:25 +0000
committerPeter Simons <simons@cryp.to>2008-07-18 20:11:25 +0000
commita16eebd0a687247bbe8b28b7e381215475db12d2 (patch)
treeb12334f89aea963fe18a062dee22c525fe065a52 /pkgs/development/tools/build-managers/scons
parent057bd7c1c2d65da02a25e651904384f0e5ef4ca8 (diff)
downloadnixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.gz
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.bz2
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.lz
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.xz
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.zst
nixlib-a16eebd0a687247bbe8b28b7e381215475db12d2.zip
Cosmetic, no functional change intended.
This patch moves curly braces to the end of the line, i.e.

  foo = { 
    ...
  };

instead of the previously used style:

  foo = 
  { 
    ...
  };

I commit this change hoping that my contributions to this project now conform
to the rules described in maintainers/docs/coding-conventions.txt so that the
self-appointed indention sheriff of the NixOS community can finally get off my
back and rest assured knowing that all i's are dotted and all t's are crossed.

svn path=/nixpkgs/trunk/; revision=12386
Diffstat (limited to 'pkgs/development/tools/build-managers/scons')
-rw-r--r--pkgs/development/tools/build-managers/scons/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/tools/build-managers/scons/default.nix b/pkgs/development/tools/build-managers/scons/default.nix
index 077d4e452ec7..8d53ca6d23ec 100644
--- a/pkgs/development/tools/build-managers/scons/default.nix
+++ b/pkgs/development/tools/build-managers/scons/default.nix
@@ -2,8 +2,7 @@
 
 stdenv.mkDerivation {
   name = "scons-${version}";
-  meta =
-  {
+  meta = {
     homepage = "http://scons.org/";
     description = "An improved, cross-platform substitute for Make";
     longDescription =
@@ -15,8 +14,7 @@ stdenv.mkDerivation {
        software.
     '';
   };
-  src = fetchurl
-  {
+  src = fetchurl {
     url = "mirror://sourceforge/scons/scons-${version}.tar.gz";
     sha256 = "${versionHash}";
   };