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: 1efa4c4f3929
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0bfd0187dafe
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 24, 2020

  1. Copy the full SHA
    0bfd018 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/tools/misc/parallel/default.nix
6 changes: 4 additions & 2 deletions pkgs/tools/misc/parallel/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{ fetchurl, stdenv, perl, makeWrapper, procps }:

stdenv.mkDerivation rec {
name = "parallel-20200222";
name = "parallel-20200322";

src = fetchurl {
url = "mirror://gnu/parallel/${name}.tar.bz2";
sha256 = "077b72h2d191bmsb78fmzcynxj5mi5v3axmwwxz1d1q8xhv756r6";
sha256 = "0kg95glnfg25i1w7qg2vr5v4671vigsazmz4qdf223l64khq8x10";
};

outputs = [ "out" "man" ];

nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl procps ];