mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
3a83109945
* aescrypt: change `${pname}` to string literal * bandwidth: change `${pname}` to string literal * bc: change `${pname}` to string literal * bdfresize: change `${pname}` to string literal * birdfont: change `${pname}` to string literal * brltty: change `${pname}` to string literal * calamares: change `${pname}` to string literal * ccal: change `${pname}` to string literal * clac: change `${pname}` to string literal * colord-gtk4: change `${pname}` to string literal * colord: change `${pname}` to string literal * colorless: change `${pname}` to string literal * cunit: change `${pname}` to string literal * datamash: change `${pname}` to string literal * dateutils: change `${pname}` to string literal * desktop-file-utils: change `${pname}` to string literal * digitemp: change `${pname}` to string literal * ding-libs: change `${pname}` to string literal * docbook2mdoc: change `${pname}` to string literal * dtach: change `${pname}` to string literal * empty: change `${pname}` to string literal * entr: change `${pname}` to string literal * envsubst: change `${pname}` to string literal * ethtool: change `${pname}` to string literal * fdtools: change `${pname}` to string literal * filebench: change `${pname}` to string literal * findutils: change `${pname}` to string literal * fortune: change `${pname}` to string literal * fpart: change `${pname}` to string literal * fxlinuxprintutil: change `${pname}` to string literal * gbdfed: change `${pname}` to string literal * getopt: change `${pname}` to string literal * github-copilot-cli: change `${pname}` to string literal * gparted: change `${pname}` to string literal * hddtemp: change `${pname}` to string literal * hdfview: change `${pname}` to string literal * hpcg: change `${pname}` to string literal * hpl: change `${pname}` to string literal * ink: change `${pname}` to string literal * ised: change `${pname}` to string literal * isoimagewriter: change `${pname}` to string literal * kronometer: change `${pname}` to string literal * libsForQt5.qt5ct: change `${pname}` to string literal * lilo: change `${pname}` to string literal * lockfileProgs: change `${pname}` to string literal * map-cmd: change `${pname}` to string literal * mcrypt: change `${pname}` to string literal * most: change `${pname}` to string literal * mrtg: change `${pname}` to string literal * ms-sys: change `${pname}` to string literal * multitime: change `${pname}` to string literal * nbench: change `${pname}` to string literal * osinfo-db-tools: change `${pname}` to string literal * parallel-full: change `${pname}` to string literal * phoronix-test-suite: change `${pname}` to string literal * pod2mdoc: change `${pname}` to string literal * powerline-rs: change `${pname}` to string literal * recoverjpeg: change `${pname}` to string literal * recutils: change `${pname}` to string literal * routino: change `${pname}` to string literal * rpm-ostree: change `${pname}` to string literal * screen: change `${pname}` to string literal * sharedown: change `${pname}` to string literal * statserial: change `${pname}` to string literal * taoup: change `${pname}` to string literal * texi2mdoc: change `${pname}` to string literal * tmpwatch: change `${pname}` to string literal * toilet: change `${pname}` to string literal * triehash: change `${pname}` to string literal * ttfautohint: change `${pname}` to string literal * txt2man: change `${pname}` to string literal * urjtag: change `${pname}` to string literal * uudeview: change `${pname}` to string literal * uutils-coreutils: change `${pname}` to string literal * vttest: change `${pname}` to string literal * wacomtablet: change `${pname}` to string literal * xcd: change `${pname}` to string literal * xdaliclock: change `${pname}` to string literal * xjobs: change `${pname}` to string literal * feishin: change `${pname}` to string literal * gifsicle: change `${pname}` to string literal * nzbhydra2: change `${pname}` to string literal * vatprism: change `${pname}` to string literal * webfs: change `${pname}` to string literal * yggstack: change `${pname}` to string literal
67 lines
2.0 KiB
Nix
67 lines
2.0 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, flex, installShellFiles, ncurses, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xjobs";
|
|
version = "20200726";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge//xjobs/files/xjobs-${version}.tgz";
|
|
sha256 = "0ay6gn43pnm7r1jamwgpycl67bjg5n87ncl27jb01w2x6x70z0i3";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flex
|
|
installShellFiles
|
|
which
|
|
];
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
./xjobs -V
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/{bin,etc}
|
|
install -m755 xjobs $out/bin/xjobs
|
|
install -m644 xjobs.rc $out/etc/xjobs.rc
|
|
installManPage xjobs.1
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Program which reads job descriptions line by line and executes them in parallel";
|
|
homepage = "https://www.maier-komor.de/xjobs.html";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.siriobalmelli ];
|
|
longDescription = ''
|
|
xjobs reads job descriptions line by line and executes them in parallel.
|
|
|
|
It limits the number of parallel executing jobs and starts new jobs when jobs finish.
|
|
|
|
Therefore, it combines the arguments from every input line with the utility
|
|
and arguments given on the command line.
|
|
If no utility is given as an argument to xjobs,
|
|
then the first argument on every job line will be used as utility.
|
|
To execute utility xjobs searches the directories given in the PATH environment variable
|
|
and uses the first file found in these directories.
|
|
|
|
xjobs is most useful on multi-processor/core machines when one needs to execute
|
|
several time consuming command several that could possibly be run in parallel.
|
|
With xjobs this can be achieved easily, and it is possible to limit the load
|
|
of the machine to a useful value.
|
|
|
|
It works similar to xargs, but starts several processes simultaneously
|
|
and gives only one line of arguments to each utility call.
|
|
'';
|
|
mainProgram = "xjobs";
|
|
};
|
|
}
|