https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: d893b8398d110b566cbe0565d49aa41e0de40980 authored by Pierre-Yves Strub on 19 October 2021, 10:22:51 UTC
Merge branch '1.0' into deploy-pattern-in-rewrite
Tip revision: d893b83
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