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: 68cea76f36d1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dcdde33302ce
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 7, 2020

  1. Copy the full SHA
    f829159 View commit details

Commits on Jan 8, 2020

  1. Merge pull request #77172 from r-ryantm/auto-update/parallel

    parallel: 20191122 -> 20191222
    marsam authored Jan 8, 2020
    Copy the full SHA
    dcdde33 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/parallel/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/parallel/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, perl, makeWrapper, procps }:

stdenv.mkDerivation rec {
name = "parallel-20191122";
name = "parallel-20191222";

src = fetchurl {
url = "mirror://gnu/parallel/${name}.tar.bz2";
sha256 = "01wmk3sf34d2lmhl37j4ga7aims2hcnzv1bydg1xs4pablar6ahq";
sha256 = "0xvw578440s9cc382n7z2l8npj30nwr6wwmkyxn2pj1pcszfjagy";
};

nativeBuildInputs = [ makeWrapper ];