https://github.com/EasyCrypt/easycrypt
Revision 6857723e50824c94d127066a0cb93e913485f738 authored by Benjamin Gregoire on 24 November 2020, 13:48:55 UTC, committed by Benjamin Gregoire on 24 November 2020, 13:49:28 UTC
1 parent fcdfcbd
Raw File
Tip revision: 6857723e50824c94d127066a0cb93e913485f738 authored by Benjamin Gregoire on 24 November 2020, 13:48:55 UTC
simplify user reduction
Tip revision: 6857723
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