https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 4a45b36d5cd8cc4b7bc30351f41eaeeaaeb30ec6 authored by Pierre-Yves Strub on 04 April 2021, 06:10:25 UTC
Why3 1.4: CI
Tip revision: 4a45b36
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