summary refs log tree commit diff
path: root/pkgs/tools/networking/pdsh
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/tools/networking/pdsh
parent3303106e97a75327e1d69122346f8aa29cce2416 (diff)
downloadnixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar.gz
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar.bz2
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar.lz
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar.xz
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.tar.zst
nixpkgs-fd8c6ae43dca2f795660e9b67e770a14bf70f685.zip
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/tools/networking/pdsh')
-rw-r--r--pkgs/tools/networking/pdsh/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix
index 3ea7a7bdd5c..1034d7e09f5 100644
--- a/pkgs/tools/networking/pdsh/default.nix
+++ b/pkgs/tools/networking/pdsh/default.nix
@@ -2,11 +2,6 @@
 
 stdenv.mkDerivation rec {
   name = "pdsh-2.18";
-  meta = {
-    homepage = "https://computing.llnl.gov/linux/pdsh.html";
-    description = "A high-performance, parallel remote shell utility.";
-    license = "GPLv2";
-  };
   src = fetchurl {
     url = "mirror://sourceforge/pdsh/${name}.tar.bz2";
     sha256 = "8c94acb17b4af8a9f553db180b4d5745c9c98844a5dc070e2ce80590e8e8a539";
@@ -40,5 +35,11 @@ stdenv.mkDerivation rec {
                  + " --disable-debug"
                  ;
 
-  maintainers = [ stdenv.lib.maintainers.simons ];
+  meta = {
+    homepage = "https://computing.llnl.gov/linux/pdsh.html";
+    description = "A high-performance, parallel remote shell utility.";
+    license = "GPLv2";
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.simons ];
+  };
 }