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

Configure Feed

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

at 21.05 17 lines 521 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libexttextcat-3.4.5"; 5 6 src = fetchurl { 7 url = "https://dev-www.libreoffice.org/src/libexttextcat/${name}.tar.xz"; 8 sha256 = "1j6sjwkyhqvsgyw938bxxfwkzzi1mahk66g5342lv6j89jfvrz8k"; 9 }; 10 11 meta = with lib; { 12 description = "An N-Gram-Based Text Categorization library primarily intended for language guessing"; 13 homepage = "https://wiki.documentfoundation.org/Libexttextcat"; 14 platforms = platforms.all; 15 license = licenses.bsd3; 16 }; 17}