summary refs log tree commit diff
diff options
context:
space:
mode:
authorLászló Vaskó <1771332+vlaci@users.noreply.github.com>2023-03-29 00:20:11 +0200
committerLászló Vaskó <1771332+vlaci@users.noreply.github.com>2023-03-29 00:20:11 +0200
commit7550a20a4562d6db134cee25a78173fe0e31168f (patch)
tree1a40a4b1dbaa20b19a804a53fbb5634aa4dc3219
parentfb0b48d3af008ab589b38f578d8894c6956d0c6b (diff)
downloadnixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar.gz
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar.bz2
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar.lz
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar.xz
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.tar.zst
nixpkgs-7550a20a4562d6db134cee25a78173fe0e31168f.zip
nuspell: provide icu for dependent packages
Icu is required for dependent packages to properly link against
nuspell.

This change makes enchant to compile again
-rw-r--r--pkgs/development/libraries/nuspell/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/nuspell/default.nix b/pkgs/development/libraries/nuspell/default.nix
index 1bd3cefbee3..9369b8cb5f2 100644
--- a/pkgs/development/libraries/nuspell/default.nix
+++ b/pkgs/development/libraries/nuspell/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [ icu ];
+  propagatedBuildInputs = [ icu ];
 
   outputs = [ "out" "lib" "dev" ];