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