summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/cfstream/default.nix
blob: 7e46d885ca7aa9991ec99c8a2c91fa5bc10577db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  lib,
  buildDunePackage,
  fetchFromGitHub,
  m4,
  camlp-streams,
  core_kernel,
  ounit,
}:

buildDunePackage (finalAttrs: {
  pname = "cfstream";
  version = "1.3.2";

  minimalOCamlVersion = "4.08";

  src = fetchFromGitHub {
    owner = "biocaml";
    repo = "cfstream";
    rev = finalAttrs.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 = {
    inherit (finalAttrs.src.meta) homepage;
    description = "Simple Core-inspired wrapper for standard library Stream module";
    maintainers = [ lib.maintainers.bcdarwin ];
    license = lib.licenses.lgpl21;
  };
})