https://github.com/EasyCrypt/easycrypt
Revision 5a0238b4228432cd30ff7cca8f74eac6b387b063 authored by Pierre-Yves Strub on 16 November 2021, 16:53:15 UTC, committed by Pierre-Yves Strub on 16 November 2021, 16:56:20 UTC
These PR do not have access to the webhook.t
1 parent ec1f979
Raw File
Tip revision: 5a0238b4228432cd30ff7cca8f74eac6b387b063 authored by Pierre-Yves Strub on 16 November 2021, 16:53:15 UTC
[ci] do not send a slack message for PR from forked repo
Tip revision: 5a0238b
default.nix
with import <nixpkgs> {};

if !lib.versionAtLeast why3.version "1.4" then
  throw "please update your nixpkgs channel: nix-channel --update"
else
stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ why3 ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir menhirLib merlin zarith inifiles yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top