https://github.com/EasyCrypt/easycrypt
Revision 47c085109993709e44fc99790e981d5ea5aa9563 authored by Pierre-Yves Strub on 10 December 2019, 14:34:52 UTC, committed by Pierre-Yves Strub on 10 December 2019, 14:34:52 UTC
1 parent 0d33668
Raw File
Tip revision: 47c085109993709e44fc99790e981d5ea5aa9563 authored by Pierre-Yves Strub on 10 December 2019, 14:34:52 UTC
Fix parser
Tip revision: 47c0851
default.nix
with import <nixpkgs> {};

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