ocamlPackages.cfstream: 1.3.1 → 1.3.2

This commit is contained in:
Vincent Laporte 2023-02-11 11:59:39 +01:00
parent b96ced6d9a
commit 12f5b04c83
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,18 +1,18 @@
{ lib, buildDunePackage, fetchFromGitHub, m4, core_kernel, ounit }:
{ lib, buildDunePackage, fetchFromGitHub, m4, camlp-streams, core_kernel, ounit }:
buildDunePackage rec {
pname = "cfstream";
version = "1.3.1";
version = "1.3.2";
useDune2 = true;
duneVersion = "3";
minimumOCamlVersion = "4.04.1";
minimalOCamlVersion = "4.04.1";
src = fetchFromGitHub {
owner = "biocaml";
repo = pname;
rev = version;
sha256 = "0qnxfp6y294gjsccx7ksvwn9x5q20hi8sg24rjypzsdkmlphgdnd";
hash = "sha256-iSg0QsTcU0MT/Cletl+hW6bKyH0jkp7Jixqu8H59UmQ=";
};
patches = [ ./git_commit.patch ];
@ -21,7 +21,7 @@ buildDunePackage rec {
nativeBuildInputs = [ m4 ];
checkInputs = [ ounit ];
propagatedBuildInputs = [ core_kernel ];
propagatedBuildInputs = [ camlp-streams core_kernel ];
doCheck = true;