summary refs log tree commit diff
path: root/pkgs/tools/networking/pdsh
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-08-01 20:11:18 +0200
committerFelix Buehler <account@buehler.rocks>2021-08-04 22:44:30 +0200
commitb2e9932ed8f7c68d62ddb251553f12cdcd1fda4b (patch)
tree3c3c2749a028d8cdc818cd95f57a6e235ace9d12 /pkgs/tools/networking/pdsh
parent9a626cda34afad02dc1663a9e9748d3fb4a61a26 (diff)
downloadnixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar.gz
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar.bz2
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar.lz
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar.xz
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.tar.zst
nixpkgs-b2e9932ed8f7c68d62ddb251553f12cdcd1fda4b.zip
tools/networking: replace name with pname&version
Diffstat (limited to 'pkgs/tools/networking/pdsh')
-rw-r--r--pkgs/tools/networking/pdsh/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/networking/pdsh/default.nix b/pkgs/tools/networking/pdsh/default.nix
index 87601b0ddf3..d7ac9ad54e6 100644
--- a/pkgs/tools/networking/pdsh/default.nix
+++ b/pkgs/tools/networking/pdsh/default.nix
@@ -1,10 +1,11 @@
 { lib, stdenv, fetchurl, perl, readline, rsh, ssh, slurm, slurmSupport ? false }:
 
 stdenv.mkDerivation rec {
-  name = "pdsh-2.34";
+  pname = "pdsh";
+  version = "2.34";
 
   src = fetchurl {
-    url = "https://github.com/chaos/pdsh/releases/download/${name}/${name}.tar.gz";
+    url = "https://github.com/chaos/pdsh/releases/download/pdsh-${version}/pdsh-${version}.tar.gz";
     sha256 = "1s91hmhrz7rfb6h3l5k97s393rcm1ww3svp8dx5z8vkkc933wyxl";
   };