https://github.com/EasyCrypt/easycrypt
Revision 943b847475a55d975920eaf565ff158698e98ab7 authored by Benjamin Gregoire on 10 December 2019, 14:36:33 UTC, committed by Benjamin Gregoire on 10 December 2019, 14:36:33 UTC
2 parent s 3acf93f + 47c0851
Raw File
Tip revision: 943b847475a55d975920eaf565ff158698e98ab7 authored by Benjamin Gregoire on 10 December 2019, 14:36:33 UTC
Merge remote-tracking branch 'origin/1.0' into deploy-simple-stuff
Tip revision: 943b847
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top