mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
parallel: add gawk to wrapper path
Parallel uses awk to implement the --memfree option.
This commit is contained in:
parent
cd3c88ad04
commit
52d5403bee
@ -1,4 +1,4 @@
|
||||
{ fetchurl, lib, stdenv, perl, makeWrapper, procps, coreutils, buildPackages }:
|
||||
{ fetchurl, lib, stdenv, perl, makeWrapper, procps, coreutils, gawk, buildPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "parallel";
|
||||
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/parallel \
|
||||
--prefix PATH : "${lib.makeBinPath [ procps perl coreutils ]}"
|
||||
--prefix PATH : "${lib.makeBinPath [ procps perl coreutils gawk ]}"
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
Loading…
Reference in New Issue
Block a user