Unverified Commit 1e1c1048 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.ppx_pattern_bind: 0.17.0 → 0.17.1

parent 4b255a27
Loading
Loading
Loading
Loading
+19 −7
Original line number Diff line number Diff line
@@ -1567,13 +1567,25 @@ with self;
    ];
  };

  ppx_pattern_bind = janePackage {
  ppx_pattern_bind = janePackage (
    {
      pname = "ppx_pattern_bind";
    hash = "sha256-IVDvFU9ERB2YFJOgP/glYcO4KhEH5VdQ7wCCfreboqA=";
      meta.description = "PPX for writing fast incremental bind nodes in a pattern match";
      propagatedBuildInputs = [ ppx_let ];
    meta.broken = lib.versionAtLeast ppxlib.version "0.36";
  };
    }
    // (
      if lib.versionAtLeast ppxlib.version "0.36" then
        {
          version = "0.17.1";
          hash = "sha256-O3FtpXrFoyMI3iPL3BUwquREy+8TygOlyaTUGBUPk4Q=$";
        }
      else
        {
          version = "0.17.0";
          hash = "sha256-IVDvFU9ERB2YFJOgP/glYcO4KhEH5VdQ7wCCfreboqA=";
        }
    )
  );

  ppx_pipebang = janePackage {
    pname = "ppx_pipebang";