Revision bc4f6df300f8847fc5c8226d8adee2ff679a6d94 authored by Pierre-Yves Strub on 15 October 2020, 08:39:16 UTC, committed by Pierre-Yves Strub on 15 October 2020, 08:39:16 UTC
It stands for "glob M" without "p1, p2, ..."
1 parent 22a8b51
Raw File
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