wrapped programs: switch to nativeBuildInputs

This commit is contained in:
Charlie Root 2025-04-16 22:34:25 +02:00
commit 57a0a84398
5 changed files with 5 additions and 5 deletions

View file

@ -309,7 +309,7 @@
# typst lsp
vscode-langservers-extracted
];
buildInputs = [makeWrapper];
nativeBuildInputs = [makeWrapper];
postBuild = ''
mkdir -p $out/config/helix
cp "${toml.generate "config.toml" helix-config}" $out/config/helix/config.toml

View file

@ -25,7 +25,7 @@ in
(pkgs.symlinkJoin {
name = "fish";
paths = [custom-fish] ++ packages;
buildInputs = [pkgs.makeWrapper];
nativeBuildInputs = [pkgs.makeWrapper];
postBuild = ''
wrapProgram $out/bin/fish --set STARSHIP_CONFIG "${toml.generate "starship.toml" starship-config}" \
'';