https://github.com/EasyCrypt/easycrypt
Revision 88ded1b97aa6a83e175fa91aea212dc73824db64 authored by Pierre-Yves Strub on 17 September 2019, 11:28:41 UTC, committed by Pierre-Yves Strub on 17 September 2019, 11:28:41 UTC
1 parent 67392e1
Raw File
Tip revision: 88ded1b97aa6a83e175fa91aea212dc73824db64 authored by Pierre-Yves Strub on 17 September 2019, 11:28:41 UTC
Fix "n?" intro pattern.
Tip revision: 88ded1b
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 ])
    ;
}
back to top