https://github.com/EasyCrypt/easycrypt
Revision fb590008413d4b6c5a0293ef84048d705f2208f6 authored by Pierre-Yves Strub on 03 April 2021, 19:32:58 UTC, committed by Pierre-Yves Strub on 03 April 2021, 19:32:58 UTC
1 parent 7627a75
Raw File
Tip revision: fb590008413d4b6c5a0293ef84048d705f2208f6 authored by Pierre-Yves Strub on 03 April 2021, 19:32:58 UTC
CI: use workflow conclusion
Tip revision: fb59000
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