Commit d4815196 authored by Mario Rodas's avatar Mario Rodas Committed by github-actions[bot]
Browse files

ocamlPackages.oseq: 0.4 -> 0.5

Diff: https://github.com/c-cube/oseq/compare/v0.4...v0.5

Changelog: https://github.com/c-cube/oseq/releases/tag/v0.5
(cherry picked from commit 7135df8c663a7abaa2379f21bc118f5884a02244)
parent a9f370a0
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildDunePackage
, seq
, containers, qcheck
}:

buildDunePackage rec {
  version = "0.4";
  version = "0.5";
  pname = "oseq";

  src = fetchFromGitHub {
    owner = "c-cube";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-FoCBvvPwa/dUCrgDEd0clEKAO7EcpedjaO4v+yUO874=";
    hash = "sha256-JMIcRyciNvLOE1Gpin7CpcDNSmGYFxZWsDN0X6D/NVI=";
  };

  propagatedBuildInputs = [ seq ];

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  doCheck = true;