python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / mythes / default.nix
blob2c4312d6498d7ff6e75360cca265baf5671b7062
1 { lib, stdenv, fetchurl, hunspell, ncurses, pkg-config, perl }:
3 stdenv.mkDerivation rec {
4   pname = "mythes";
5   version = "1.2.4";
7   src = fetchurl {
8     url = "mirror://sourceforge/hunspell/mythes-${version}.tar.gz";
9     sha256 = "0prh19wy1c74kmzkkavm9qslk99gz8h8wmjvwzjc6lf8v2az708y";
10   };
12   buildInputs = [ hunspell ];
13   nativeBuildInputs = [ ncurses pkg-config perl ];
15   meta = {
16     homepage = "http://hunspell.sourceforge.net/";
17     description = "Thesaurus library from Hunspell project";
18     license = lib.licenses.bsd3;
19     inherit (hunspell.meta) platforms;
20   };