https://github.com/EasyCrypt/easycrypt
Revision 9c741f1210980a35b4c3c0909580926be96d79d1 authored by Pierre-Yves Strub on 02 April 2021, 11:52:49 UTC, committed by Pierre-Yves Strub on 02 April 2021, 11:52:49 UTC
1 parent 30b7cae
Raw File
Tip revision: 9c741f1210980a35b4c3c0909580926be96d79d1 authored by Pierre-Yves Strub on 02 April 2021, 11:52:49 UTC
List: subseqs
Tip revision: 9c741f1
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