https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 27c52db9873e7413e9a8f99b8c310907dbdd8405 authored by François Dupressoir on 07 July 2020, 16:39:30 UTC
Try out a non-branching version of core ROM
Tip revision: 27c52db
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