https://github.com/EasyCrypt/easycrypt
Revision df9ab35562bb36627b80ae05cc1a1e30cb6994eb authored by Pierre-Yves Strub on 02 April 2021, 20:27:10 UTC, committed by Pierre-Yves Strub on 02 April 2021, 20:27:10 UTC
1 parent 91479fa
Raw File
Tip revision: df9ab35562bb36627b80ae05cc1a1e30cb6994eb authored by Pierre-Yves Strub on 02 April 2021, 20:27:10 UTC
Stdlib: refactoring
Tip revision: df9ab35
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