2012-04-30 16:34:57 +02:00
|
|
|
{fetchurl, stdenv}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "dbacl-1.14";
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.lbreyer.com/gpl/${name}.tar.gz";
|
2014-10-12 16:13:21 +02:00
|
|
|
sha256 = "0224g6x71hyvy7jikfxmgcwww1r5lvk0jx36cva319cb9nmrbrq7";
|
2012-04-30 16:34:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://dbacl.sourceforge.net/";
|
2012-04-30 16:34:57 +02:00
|
|
|
longDescription = "a digramic Bayesian classifier for text recognition.";
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = [];
|
2012-04-30 16:34:57 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-04-30 16:34:57 +02:00
|
|
|
};
|
|
|
|
}
|