swh:1:snp:04e159a4411e97cbe416dcf21d082639f654120b
Raw File
Tip revision: c07e88032b0dc6ec2a6aa30b6025dbd8fc253515 authored by Pierre-Yves Strub on 06 September 2021, 09:47:40 UTC
Fix global positions reporting
Tip revision: c07e880
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