ocamlPackages.seqes: init at 0.2
This commit is contained in:
parent
fbb31c62e8
commit
f737b4d32c
2 changed files with 21 additions and 0 deletions
19
pkgs/development/ocaml-modules/seqes/default.nix
Normal file
19
pkgs/development/ocaml-modules/seqes/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ lib, fetchurl, buildDunePackage, qcheck, qcheck-alcotest, alcotest }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "seqes";
|
||||||
|
version = "0.2";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://gitlab.com/nomadic-labs/seqes/-/archive/${version}/seqes-${version}.tar.gz";
|
||||||
|
sha256 = "sha256-IxLA0jaIPdX9Zn/GL8UHDJYjA1UBW6leGbZmp64YMjI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ qcheck qcheck-alcotest alcotest ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Variations of the Seq module with monads folded into the type";
|
||||||
|
homepage = "https://gitlab.com/nomadic-labs/seqes";
|
||||||
|
license = licenses.lgpl2; # Same as OCaml
|
||||||
|
maintainers = [ maintainers.ulrikstrid ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1513,6 +1513,8 @@ let
|
||||||
|
|
||||||
seq = callPackage ../development/ocaml-modules/seq { };
|
seq = callPackage ../development/ocaml-modules/seq { };
|
||||||
|
|
||||||
|
seqes = callPackage ../development/ocaml-modules/seqes { };
|
||||||
|
|
||||||
sha = callPackage ../development/ocaml-modules/sha { };
|
sha = callPackage ../development/ocaml-modules/sha { };
|
||||||
|
|
||||||
shared-memory-ring = callPackage ../development/ocaml-modules/shared-memory-ring { };
|
shared-memory-ring = callPackage ../development/ocaml-modules/shared-memory-ring { };
|
||||||
|
|
Loading…
Reference in a new issue