Merge pull request #260726 from gmacon/parallel-gawk

This commit is contained in:
Artturi 2023-10-31 17:58:10 +02:00 committed by GitHub
commit 6f7f8031f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;