Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
793 B
Nix
45 lines
793 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
m4,
|
|
camlp-streams,
|
|
core_kernel,
|
|
ounit,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "cfstream";
|
|
version = "1.3.2";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "biocaml";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-iSg0QsTcU0MT/Cletl+hW6bKyH0jkp7Jixqu8H59UmQ=";
|
|
};
|
|
|
|
patches = [
|
|
./git_commit.patch
|
|
./janestreet-0.17.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ m4 ];
|
|
checkInputs = [ ounit ];
|
|
propagatedBuildInputs = [
|
|
camlp-streams
|
|
core_kernel
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Simple Core-inspired wrapper for standard library Stream module";
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|