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:
14
pkgs/development/libraries/haskell/process/default.nix
Normal file
14
pkgs/development/libraries/haskell/process/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user