2015-08-29 17:49:00 +00:00
|
|
|
{ fetchurl, stdenv, perl, makeWrapper, procps }:
|
2010-05-02 09:27:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-24 06:27:07 +00:00
|
|
|
name = "parallel-20180822";
|
2010-05-02 09:27:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/parallel/${name}.tar.bz2";
|
2018-08-24 06:27:07 +00:00
|
|
|
sha256 = "0jjs7fpvdjjb5v0j39a6k7hq9h5ap3db1j7vg1r2dq4swk23h9bm";
|
2010-05-02 09:27:32 +00:00
|
|
|
};
|
|
|
|
|
2017-06-13 20:28:05 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper perl ];
|
2010-09-05 15:19:02 +00:00
|
|
|
|
2017-06-13 20:28:05 +00:00
|
|
|
postInstall = ''
|
2015-08-29 17:49:00 +00:00
|
|
|
wrapProgram $out/bin/parallel \
|
2018-03-26 04:01:31 +00:00
|
|
|
--prefix PATH : "${procps}/bin" \
|
2015-11-26 16:28:17 +00:00
|
|
|
--prefix PATH : "${perl}/bin" \
|
2015-08-27 08:00:58 +00:00
|
|
|
'';
|
2010-05-02 09:27:32 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2014-09-25 16:17:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Shell tool for executing jobs in parallel";
|
2010-05-02 09:27:32 +00: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.
|
|
|
|
'';
|
|
|
|
homepage = http://www.gnu.org/software/parallel/;
|
2014-09-25 16:17:54 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2016-06-23 07:51:20 +00:00
|
|
|
maintainers = with maintainers; [ pSub vrthra ];
|
2010-05-02 09:27:32 +00:00
|
|
|
};
|
|
|
|
}
|