https://github.com/EasyCrypt/easycrypt
Revision d3fc323cf7c0f54114269c6719480555bbc6037e authored by François Dupressoir on 15 June 2020, 15:10:39 UTC, committed by François Dupressoir on 16 June 2020, 09:51:05 UTC
1 parent 25bcf42
Raw File
Tip revision: d3fc323cf7c0f54114269c6719480555bbc6037e authored by François Dupressoir on 15 June 2020, 15:10:39 UTC
Fix merge problem
Tip revision: d3fc323
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