Skip to content

Commit

Permalink
hspell: Add zlib
Browse files Browse the repository at this point in the history
As mentioned by the configure script output, hspell will fall back
on using `gzip` program when not linked against `zlib`:

    No Zlib library, defaulting to using pipes

It has been removed in 67f0a21 for some reason.

I am getting the following in the journal from `geary` through `enchant`,
hopefully this fixes it:

    Hspell: can't run gzip -dc '/nix/store/14qk9r9ywvpqn0a24fvw1iwjv302d04j-hspell-1.4/share/hspell/hebrew.wgz.prefixes'.
  • Loading branch information
jtojnar committed Dec 31, 2024
1 parent 88195a9 commit 8589a17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/libraries/hspell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ stdenv.mkDerivation rec {
perl
zlib
];
buildInputs = [ perl ];
buildInputs = [
perl
zlib
];

strictDeps = true;

Expand Down

0 comments on commit 8589a17

Please sign in to comment.