https://github.com/EasyCrypt/easycrypt
Revision 1f45fde6641533d578877e736d1e3865f2de13f3 authored by Alley Stoughton on 10 October 2019, 11:50:05 UTC, committed by Pierre-Yves Strub on 10 October 2019, 11:50:05 UTC
1 parent da0b25a
Raw File
Tip revision: 1f45fde6641533d578877e736d1e3865f2de13f3 authored by Alley Stoughton on 10 October 2019, 11:50:05 UTC
refactor flagged map && PROM (#22)
Tip revision: 1f45fde
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