nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

hyphen: init at 2.8.8

Related to #60005.

authored by

Oleksii Filonenko and committed by
Lassulus
86a76094 b679ce80

+29
+27
pkgs/development/libraries/hyphen/default.nix
··· 1 + { stdenv, fetchurl, perl, ... }: 2 + 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; 11 + 12 + nativeBuildInputs = [ perl ]; 13 + 14 + src = fetchurl { 15 + url = 16 + "https://sourceforge.net/projects/hunspell/files/Hyphen/${folder}/${pname}-${version}.tar.gz"; 17 + sha256 = "01ap9pr6zzzbp4ky0vy7i1983fwyqy27pl0ld55s30fdxka3ciih"; 18 + }; 19 + 20 + meta = with stdenv.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; [ filalex77 ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 4002 4002 4003 4003 hylafaxplus = callPackage ../servers/hylafaxplus { }; 4004 4004 4005 + hyphen = callPackage ../development/libraries/hyphen { }; 4006 + 4005 4007 i2c-tools = callPackage ../os-specific/linux/i2c-tools { }; 4006 4008 4007 4009 i2p = callPackage ../tools/networking/i2p {};