https://github.com/EasyCrypt/easycrypt
Revision f278e3c30d8308b64b2c9c6db52562f03e6803d8 authored by François Dupressoir on 14 December 2021, 12:22:51 UTC, committed by Pierre-Yves Strub on 18 February 2022, 22:51:52 UTC
1 parent 70662a7
Raw File
Tip revision: f278e3c30d8308b64b2c9c6db52562f03e6803d8 authored by François Dupressoir on 14 December 2021, 12:22:51 UTC
Lemma stating equality of word and list distributions
Tip revision: f278e3c
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
      batteries
      dune_2
      dune-build-info
      dune-site
      inifiles
      menhir
      menhirLib
      merlin
      yojson
      zarith
    ]);
    installFlags = [ "PREFIX=$(out)" ];
  }
back to top