cryptol v2.0.0

This comes with several extra libraries, including GraphSCC, monadLib,
presburger, process and smtLib, all required as build dependencies. But
otherwise totally automated via cabal2nix.

Next up is CVC4 (a total pain in the ass to package) for proving/SAT
support.

I have another WIP branch for the unfree 1.x series which I may (or may
not) add later as it has external verification tech at the moment.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp
2014-04-24 23:15:50 -05:00
parent b470c93c1e
commit 5401849e3a
8 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, deepseq, filepath }:
cabal.mkDerivation (self: {
pname = "process";
version = "1.2.0.0";
sha256 = "02il5pxibf0q9b46v0lgdxyc2wlk5kg1v8223ry6brg41zpcj71q";
buildDepends = [ deepseq filepath ];
meta = {
description = "Process libraries";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.thoughtpolice ];
};
})