https://github.com/EasyCrypt/easycrypt
Revision 4b604bf5dd2db47995c790f8ea103a0306b54482 authored by Christian Doczkal on 04 November 2021, 14:52:23 UTC, committed by Pierre-Yves Strub on 16 November 2021, 17:35:04 UTC
1 parent ab62416
Raw File
Tip revision: 4b604bf5dd2db47995c790f8ea103a0306b54482 authored by Christian Doczkal on 04 November 2021, 14:52:23 UTC
renamings: dletE[_swap] -> dlet_muE[_swap] and dletE_mu -> dletE
Tip revision: 4b604bf
default.nix
with import <nixpkgs> {};

if !lib.versionAtLeast why3.version "1.4" then
  throw "please update your nixpkgs channel: nix-channel --update"
else
stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ why3 ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir menhirLib merlin zarith inifiles yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top