treewide: remove nativeBuildInputs that are in stdenv

This commit is contained in:
Ben Siraphob
2022-04-16 21:46:46 +03:00
committed by Artturin
parent bc094aeaee
commit 259fa13d53
74 changed files with 89 additions and 151 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, makeWrapper, gawk
{ lib, fetchFromGitHub, makeWrapper
, makeFontsConf, freefont_ttf, gnuplot, perl, perlPackages
, stdenv, shortenPerlShebang
}:
@@ -22,7 +22,7 @@ perlPackages.buildPerlPackage rec {
outputs = [ "out" ];
nativeBuildInputs = [ makeWrapper gawk ] ++ lib.optional stdenv.isDarwin shortenPerlShebang;
nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isDarwin shortenPerlShebang;
buildInputs = [ gnuplot perl ]
++ (with perlPackages; [ ListMoreUtils IPCRun StringShellQuote ]);