Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5953273cb757
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e820245294c3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 22, 2020

  1. pdsh: 2.33 -> 2.34

    r-ryantm committed Jan 22, 2020
    Copy the full SHA
    cc72671 View commit details

Commits on Jan 24, 2020

  1. Merge pull request #78259 from r-ryantm/auto-update/pdsh

    pdsh: 2.33 -> 2.34
    marsam authored Jan 24, 2020
    Copy the full SHA
    e820245 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/networking/pdsh/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/networking/pdsh/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, perl, readline, rsh, ssh }:

stdenv.mkDerivation rec {
name = "pdsh-2.33";
name = "pdsh-2.34";

src = fetchurl {
url = "https://github.com/chaos/pdsh/releases/download/${name}/${name}.tar.gz";
sha256 = "0bwlkl9inj66iwvafg00pi3sk9n673phdi0kcc59y9nn55s0hs3k";
sha256 = "1s91hmhrz7rfb6h3l5k97s393rcm1ww3svp8dx5z8vkkc933wyxl";
};

buildInputs = [ perl readline ssh ];