nixpkgs/pkgs/development/ocaml-modules/cfstream/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
793 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub, m4, core_kernel, ounit }:
2019-11-25 18:53:35 +03:00
buildDunePackage rec {
pname = "cfstream";
2020-01-31 01:04:54 +03:00
version = "1.3.1";
2019-11-25 18:53:35 +03:00
2020-12-08 23:50:08 +03:00
useDune2 = true;
2019-11-25 18:53:35 +03:00
minimumOCamlVersion = "4.04.1";
src = fetchFromGitHub {
owner = "biocaml";
repo = pname;
rev = version;
2020-01-31 01:04:54 +03:00
sha256 = "0qnxfp6y294gjsccx7ksvwn9x5q20hi8sg24rjypzsdkmlphgdnd";
2019-11-25 18:53:35 +03:00
};
patches = [ ./git_commit.patch ];
# This currently fails with dune
strictDeps = false;
nativeBuildInputs = [ m4 ];
2019-11-25 18:53:35 +03:00
checkInputs = [ ounit ];
propagatedBuildInputs = [ core_kernel ];
doCheck = true;
meta = with lib; {
2019-11-25 18:53:35 +03:00
inherit (src.meta) homepage;
description = "Simple Core-inspired wrapper for standard library Stream module";
maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl21;
};
}