fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{fetchurl, stdenv}:
2
3stdenv.mkDerivation rec {
4 name = "dbacl-1.14";
5 src = fetchurl {
6 url = "https://www.lbreyer.com/gpl/${name}.tar.gz";
7 sha256 = "0224g6x71hyvy7jikfxmgcwww1r5lvk0jx36cva319cb9nmrbrq7";
8 };
9
10 meta = {
11 homepage = "http://dbacl.sourceforge.net/";
12 longDescription = "a digramic Bayesian classifier for text recognition.";
13 maintainers = [];
14 license = stdenv.lib.licenses.gpl3;
15 platforms = stdenv.lib.platforms.unix;
16 };
17}