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
This commit is contained in:
Mario Rodas 2023-05-27 04:20:00 +00:00 committed by Vincent Laporte
parent b9a58b4ade
commit afd309e2a6

View file

@ -1,21 +1,19 @@
{ 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;