1{
2 fetchurl,
3 lib,
4 stdenv,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "dbacl";
9 version = "1.14";
10
11 src = fetchurl {
12 url = "https://www.lbreyer.com/gpl/dbacl-${version}.tar.gz";
13 sha256 = "0224g6x71hyvy7jikfxmgcwww1r5lvk0jx36cva319cb9nmrbrq7";
14 };
15
16 meta = {
17 homepage = "https://dbacl.sourceforge.net/";
18 longDescription = "a digramic Bayesian classifier for text recognition.";
19 maintainers = [ ];
20 license = lib.licenses.gpl3;
21 platforms = lib.platforms.unix;
22 };
23}