https://github.com/EasyCrypt/easycrypt
Revision 83e39fdb9219d597813672d32c3be1b84c4d0bf8 authored by Pierre-Yves Strub on 07 April 2021, 14:44:27 UTC, committed by Pierre-Yves Strub on 07 April 2021, 14:44:27 UTC
1 parent 6ce66c7
Raw File
Tip revision: 83e39fdb9219d597813672d32c3be1b84c4d0bf8 authored by Pierre-Yves Strub on 07 April 2021, 14:44:27 UTC
Prove that polynomials form an integral domain
Tip revision: 83e39fd
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top