57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
17 lines
486 B
Nix
17 lines
486 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libexttextcat-3.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev-www.libreoffice.org/src/libexttextcat/${name}.tar.xz";
|
|
sha256 = "1j6sjwkyhqvsgyw938bxxfwkzzi1mahk66g5342lv6j89jfvrz8k";
|
|
};
|
|
|
|
meta = {
|
|
description = "An N-Gram-Based Text Categorization library primarily intended for language guessing";
|
|
homepage = https://wiki.documentfoundation.org/Libexttextcat;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|