treewide: bundlerApp makeWrapper buildInputs -> nativeBuildInputs

the docs for bundlerApp used to have makeWrapper in buildInputs but it
has been corrected already
This commit is contained in:
Artturin 2022-08-14 06:41:33 +03:00
parent fae0b890bc
commit 211fdaa087
9 changed files with 9 additions and 11 deletions

View File

@ -35,7 +35,7 @@ bundlerApp {
exes = [ "image_optim" ];
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/image_optim \

View File

@ -7,7 +7,7 @@ bundlerApp rec {
inherit ruby;
gemdir = ./.;
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
passthru.updateScript = bundlerUpdateScript "gollum";

View File

@ -30,7 +30,7 @@ in bundlerApp {
then ./full
else ./basic;
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/jekyll --prefix PATH : ${rubyWrapper}/bin

View File

@ -5,7 +5,7 @@ bundlerApp {
gemdir = ./.;
exes = [ "bolt" ];
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
gemConfig.bolt = attrs: {
# scripts in libexec will be executed by remote host,

View File

@ -5,7 +5,7 @@ bundlerApp {
gemdir = ./.;
exes = [ "fusuma" ];
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/fusuma" \

View File

@ -9,9 +9,7 @@ bundlerApp {
gemdir = ./.;
exes = [ "wpscan" ];
buildInputs = [
makeWrapper
];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/wpscan" \

View File

@ -5,7 +5,7 @@ bundlerApp {
gemdir = ./.;
exes = [ "r10k" ];
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/r10k --prefix PATH : ${lib.makeBinPath [ git gnutar gzip ]}

View File

@ -20,7 +20,7 @@ bundlerApp rec {
"asciidoctor-revealjs"
];
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
postBuild = lib.optionalString (path != "") (lib.concatMapStrings (exe: ''
wrapProgram $out/bin/${exe} \

View File

@ -13,7 +13,7 @@ let
"kramdoc"
];
# buildInputs = [ makeWrapper ];
# nativeBuildInputs = [ makeWrapper ];
# postBuild = ''
# wrapProgram "$out/bin/asciidoctor-epub3" \