lol
fork

Configure Feed

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

at master 23 lines 582 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "libexttextcat"; 9 version = "3.4.6"; 10 11 src = fetchurl { 12 url = "https://dev-www.libreoffice.org/src/libexttextcat/${pname}-${version}.tar.xz"; 13 sha256 = "sha256-bXfqziDp6hBsEzDiaO3nDJpKiXRN3CVxVoJ1TsozaN8="; 14 }; 15 16 meta = with lib; { 17 description = "N-Gram-Based Text Categorization library primarily intended for language guessing"; 18 homepage = "https://wiki.documentfoundation.org/Libexttextcat"; 19 license = licenses.bsd3; 20 mainProgram = "createfp"; 21 platforms = platforms.all; 22 }; 23}