aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix
index 34c3d26c55ec..4ae177232751 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/hunspell/wrapper.nix
@@ -5,7 +5,7 @@ let
in
stdenv.mkDerivation {
name = (appendToName "with-dicts" hunspell).name;
- buildInputs = [ makeWrapper ];
+ nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
makeWrapper ${hunspell.bin}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${searchPath}
'';