2021-01-15 22:18:51 +00:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, m4, core_kernel, ounit }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "cfstream";
|
|
|
|
version = "1.3.1";
|
|
|
|
|
2020-12-25 13:55:36 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
minimumOCamlVersion = "4.04.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "biocaml";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0qnxfp6y294gjsccx7ksvwn9x5q20hi8sg24rjypzsdkmlphgdnd";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./git_commit.patch ];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
# This currently fails with dune
|
|
|
|
strictDeps = false;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ m4 ];
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ ounit ];
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ core_kernel ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Simple Core-inspired wrapper for standard library Stream module";
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
}
|