504ee1b59b
Semi-automatic update. These checks were performed: - built on NixOS - found 3.4.5 with grep in /nix/store/z24cwnyn0qhdxr11d6bh5cjakagdj3n3-libexttextcat-3.4.5 - found 3.4.5 in filename of file in /nix/store/z24cwnyn0qhdxr11d6bh5cjakagdj3n3-libexttextcat-3.4.5
17 lines
485 B
Nix
17 lines
485 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libexttextcat-3.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://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;
|
|
};
|
|
}
|