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