https://github.com/EasyCrypt/easycrypt
Revision 170c443ccc0dbfce146b21e7feb9299182fa61e0 authored by Benjamin Gregoire on 27 April 2020, 12:23:05 UTC, committed by Benjamin Gregoire on 27 April 2020, 12:23:05 UTC
1 parent 58aaed4
Raw File
Tip revision: 170c443ccc0dbfce146b21e7feb9299182fa61e0 authored by Benjamin Gregoire on 27 April 2020, 12:23:05 UTC
fix default.nix
Tip revision: 170c443
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