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
This commit is contained in:
@@ -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}";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user