blob: dd6af79782cd3dc1508368543fe615adeb09bab3 (
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
|
{
lib,
fetchurl,
buildDunePackage,
qcheck,
qcheck-alcotest,
alcotest,
}:
buildDunePackage rec {
pname = "seqes";
version = "0.4";
src = fetchurl {
url = "https://gitlab.com/raphael-proust/seqes/-/archive/${version}/seqes-${version}.tar.gz";
hash = "sha256-E4BalN68CJP7u6NSC0XBooWvUeSNqV+3KEOtoJ4g/dM=";
};
minimalOCamlVersion = "4.14";
doCheck = true;
checkInputs = [
qcheck
qcheck-alcotest
alcotest
];
meta = {
description = "Variations of the Seq module with monads folded into the type";
homepage = "https://gitlab.com/nomadic-labs/seqes";
license = lib.licenses.lgpl2; # Same as OCaml
maintainers = [ lib.maintainers.ulrikstrid ];
};
}
|