python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / hyphen / default.nix
blobed3980f7a90d5fa15137302eae50d5d18eedde30
1 { lib, stdenv, fetchurl, perl, ... }:
3 let
4   version = "2.8.8";
5   folder = with builtins;
6     let parts = splitVersion version;
7     in concatStringsSep "." [ (elemAt parts 0) (elemAt parts 1) ];
8 in stdenv.mkDerivation rec {
9   pname = "hyphen";
10   inherit version;
12   nativeBuildInputs = [ perl ];
14   src = fetchurl {
15     url =
16       "https://sourceforge.net/projects/hunspell/files/Hyphen/${folder}/${pname}-${version}.tar.gz";
17     sha256 = "01ap9pr6zzzbp4ky0vy7i1983fwyqy27pl0ld55s30fdxka3ciih";
18   };
20   meta = with lib; {
21     description = "A text hyphenation library";
22     homepage = "https://sourceforge.net/projects/hunspell/files/Hyphen/";
23     platforms = platforms.all;
24     license = with licenses; [ gpl2 lgpl21 mpl11 ];
25     maintainers = with maintainers; [ Br1ght0ne ];
26   };