Added i3wm. Added newer version of file. (this time tested, I screwed up a patch by garbas)

svn path=/nixpkgs/trunk/; revision=33952
This commit is contained in:
Rob Vermaas
2012-04-30 14:34:57 +00:00
parent 0823167b43
commit 97cac0a58c
8 changed files with 278 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
{fetchurl, stdenv}:
stdenv.mkDerivation rec {
name = "dbacl-1.14";
src = fetchurl {
url = "http://www.lbreyer.com/gpl/${name}.tar.gz";
md5 = "85bfd88bc20f326dc0f31e794948e21c";
};
meta = {
homepage = http://dbacl.sourceforge.net/;
longDescription = "a digramic Bayesian classifier for text recognition.";
maintainers = [ stdenv.lib.maintainers.garbas ];
license = stdenv.lib.licenses.gpl3;
};
}