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

36 lines
992 B
Nix
Raw Normal View History

2020-11-30 07:18:38 +00:00
{ lib, fetchFromGitHub, buildDunePackage, ocaml, dune-configurator
, mdx, qtest, result
}:
2016-02-17 17:54:23 +00:00
buildDunePackage rec {
pname = "iter";
version = "1.2.1";
2016-02-17 17:54:23 +00:00
2020-11-30 07:18:38 +00:00
useDune2 = true;
2016-02-17 17:54:23 +00:00
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
2017-07-08 10:14:16 +01:00
rev = version;
sha256 = "0j2sg50byn0ppmf6l36ksip7zx1d3gv7sc4hbbxs2rmx39jr7vxh";
2016-02-17 17:54:23 +00:00
};
2020-11-30 07:18:38 +00:00
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ result ];
2016-02-17 17:54:23 +00:00
doCheck = lib.versionAtLeast ocaml.version "4.07";
2020-11-30 07:18:38 +00:00
checkInputs = [ mdx.bin qtest ];
2016-02-17 17:54:23 +00:00
meta = {
homepage = "https://github.com/c-cube/sequence";
2016-02-17 17:54:23 +00:00
description = "Simple sequence (iterator) datatype and combinators";
longDescription = ''
Simple sequence datatype, intended to transfer a finite number of
elements from one data structure to another. Some transformations on sequences,
like `filter`, `map`, `take`, `drop` and `append` can be performed before the
sequence is iterated/folded on.
'';
license = lib.licenses.bsd2;
2016-02-17 17:54:23 +00:00
};
}