https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: bf76f88065b9abe1f1ab0417cbdd6f63447bb232 authored by Alley Stoughton on 24 November 2020, 16:20:22 UTC
[fix #17390]
Tip revision: bf76f88
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