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

Commits on May 7, 2017

  1. parallel: 20170122 -> 20170422

    mimadrid committed May 7, 2017
    Copy the full SHA
    fa33bbc View commit details
  2. Merge pull request #25587 from mimadrid/update/parallel-20170422

    parallel: 20170122 -> 20170422
    pSub authored May 7, 2017
    Copy the full SHA
    e7322f1 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-20170122";
name = "parallel-20170422";

src = fetchurl {
url = "mirror://gnu/parallel/${name}.tar.bz2";
sha256 = "19maf889vj1c4zakqwap58f44hgypyb5mzzwfsliir9gvvcq6zj1";
sha256 = "0afk1q8mqzz02h6imyykgi9gwk5gj08hzs6lwgd65ilj4slkh93s";
};

nativeBuildInputs = [ makeWrapper ];