Revision de42d0603001511d2d01c46b486f0864447cce72 authored by Pierre-Yves Strub on 10 May 2022, 12:14:09 UTC, committed by Pierre-Yves Strub on 10 May 2022, 12:14:09 UTC
Do not consider locations that point to non-existing files.

The configuration file location is now printing by the `config` command.
1 parent f1ce5ae
Raw File
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