https://github.com/EasyCrypt/easycrypt
Revision cdb2e6f892caaa3c72aabee855893edbed8f994a authored by François Dupressoir on 16 April 2020, 10:45:54 UTC, committed by François Dupressoir on 16 April 2020, 10:45:54 UTC
This is to align standard libraries with 1.0-preview, which forbids '='
1 parent f44260c
Raw File
Tip revision: cdb2e6f892caaa3c72aabee855893edbed8f994a authored by François Dupressoir on 16 April 2020, 10:45:54 UTC
Use arrow-based assignments
Tip revision: cdb2e6f
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])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top