https://github.com/EasyCrypt/easycrypt
Revision c8257d35ccb2da4bb7723642d3f6f7910e42f8c2 authored by Pierre-Yves Strub on 02 October 2019, 06:23:52 UTC, committed by Pierre-Yves Strub on 02 October 2019, 06:23:52 UTC
1 parent f2bcd42
Raw File
Tip revision: c8257d35ccb2da4bb7723642d3f6f7910e42f8c2 authored by Pierre-Yves Strub on 02 October 2019, 06:23:52 UTC
Namespace for libraries and th. renaming
Tip revision: c8257d3
default.nix
with import <nixpkgs> {};

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