at v192 18 lines 529 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libexttextcat-3.3.1"; 5 6 src = fetchurl { 7 url = "http://dev-www.libreoffice.org/src/libexttextcat/${name}.tar.xz"; 8 sha256 = "1a7ablpipfbiyhl6wsraj5z8pj3qkqgnrms73wzsqhpbyww334h4"; 9 }; 10 11 patches = [ ./memory-leaks.patch ]; 12 13 meta = { 14 description = "An N-Gram-Based Text Categorization library primarily intended for language guessing"; 15 homepage = http://www.freedesktop.org/wiki/Software/libexttextcat; 16 platforms = stdenv.lib.platforms.all; 17 }; 18}