summary refs log tree commit diff
path: root/pkgs/tools/networking/pdsh
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/tools/networking/pdsh
parent057bd7c1c2d65da02a25e651904384f0e5ef4ca8 (diff)
downloadnixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar
nixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.gz
nixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.bz2
nixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.lz
nixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.xz
nixpkgs-a16eebd0a687247bbe8b28b7e381215475db12d2.tar.zst
nixpkgs-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/tools/networking/pdsh')
-rw-r--r--pkgs/tools/networking/pdsh/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix
index 10837bea71a..d920816c141 100644
--- a/pkgs/tools/networking/pdsh/default.nix
+++ b/pkgs/tools/networking/pdsh/default.nix
@@ -1,16 +1,13 @@
 {stdenv, fetchurl, perl, readline, ssh, pam}:
 
-stdenv.mkDerivation rec
-{
+stdenv.mkDerivation rec {
   name = "pdsh-2.16";
-  meta =
-  {
+  meta = {
     homepage = "https://computing.llnl.gov/linux/pdsh.html";
     description = "A high-performance, parallel remote shell utility.";
     license = "GPLv2";
   };
-  src = fetchurl
-  {
+  src = fetchurl {
     url = "mirror://sourceforge/pdsh/${name}.tar.bz2";
     sha256 = "8891cd3b175d3075f7c71fa4ee2b077306117ada5dd8c0966caaa3b74eca3a3e";
   };