https://github.com/EasyCrypt/easycrypt
Revision 31ce231ee4f12f58236e21ce943bae97cad0062a authored by François Dupressoir on 06 November 2019, 20:46:14 UTC, committed by Pierre-Yves Strub on 17 November 2021, 07:51:50 UTC
these are focused on a specific proof and deserve expanding, fleshing out and cleaning up
1 parent 229ac7a
Raw File
Tip revision: 31ce231ee4f12f58236e21ce943bae97cad0062a authored by François Dupressoir on 06 November 2019, 20:46:14 UTC
[SmtMap] add has, find and some lemmas
Tip revision: 31ce231
default.nix
with import <nixpkgs> {};

if !lib.versionAtLeast why3.version "1.4" then
  throw "please update your nixpkgs channel: nix-channel --update"
else
  stdenv.mkDerivation {
    name = "easycrypt-1.0";
    src = ./.;
    buildInputs = [ why3 ] ++ (with ocamlPackages; [
      ocaml
      findlib
      batteries
      dune_2
      dune-build-info
      inifiles
      menhir
      menhirLib
      merlin
      yojson
      zarith
    ]);
    installFlags = [ "PREFIX=$(out)" ];
  }
back to top