2021-01-11 07:54:33 +00:00
|
|
|
{ fetchurl, lib, stdenv, perl, makeWrapper, procps, coreutils }:
|
2010-05-02 10:27:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-04 00:58:59 +00:00
|
|
|
name = "parallel-20200922";
|
2010-05-02 10:27:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/parallel/${name}.tar.bz2";
|
2020-11-04 00:58:59 +00:00
|
|
|
sha256 = "0wj19kwjk0hwm8bk9yfcf3rpr0314lmjy5xxlvvdqnbbc4ml2418";
|
2010-05-02 10:27:32 +01:00
|
|
|
};
|
|
|
|
|
2020-10-23 16:12:23 +01:00
|
|
|
patches = [
|
|
|
|
./fix-max-line-length-allowed.diff
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/parallel --subst-var-by coreutils ${coreutils}
|
|
|
|
'';
|
|
|
|
|
2021-02-14 09:12:21 +00:00
|
|
|
outputs = [ "out" "man" "doc" ];
|
2020-03-24 00:21:17 +00:00
|
|
|
|
2018-09-16 23:25:42 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perl procps ];
|
2010-09-05 16:19:02 +01:00
|
|
|
|
2017-06-13 21:28:05 +01:00
|
|
|
postInstall = ''
|
2015-08-29 18:49:00 +01:00
|
|
|
wrapProgram $out/bin/parallel \
|
2021-01-15 09:19:50 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ procps perl ]}"
|
2015-08-27 09:00:58 +01:00
|
|
|
'';
|
2010-05-02 10:27:32 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Shell tool for executing jobs in parallel";
|
2010-05-02 10:27:32 +01:00
|
|
|
longDescription =
|
|
|
|
'' GNU Parallel is a shell tool for executing jobs in parallel. A job
|
|
|
|
is typically a single command or a small script that has to be run
|
|
|
|
for each of the lines in the input. The typical input is a list of
|
|
|
|
files, a list of hosts, a list of users, or a list of tables.
|
|
|
|
|
|
|
|
If you use xargs today you will find GNU Parallel very easy to use.
|
|
|
|
If you write loops in shell, you will find GNU Parallel may be able
|
|
|
|
to replace most of the loops and make them run faster by running
|
|
|
|
jobs in parallel. If you use ppss or pexec you will find GNU
|
|
|
|
Parallel will often make the command easier to read.
|
|
|
|
|
|
|
|
GNU Parallel makes sure output from the commands is the same output
|
|
|
|
as you would get had you run the commands sequentially. This makes
|
|
|
|
it possible to use output from GNU Parallel as input for other
|
|
|
|
programs.
|
|
|
|
'';
|
2020-03-02 18:12:18 +00:00
|
|
|
homepage = "https://www.gnu.org/software/parallel/";
|
2014-09-25 17:17:54 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2020-04-03 09:49:28 +01:00
|
|
|
maintainers = with maintainers; [ pSub vrthra tomberek ];
|
2010-05-02 10:27:32 +01:00
|
|
|
};
|
|
|
|
}
|