Unverified Commit 12f5b04c authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.cfstream: 1.3.1 → 1.3.2

parent b96ced6d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{ 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;