aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/angstrom-lwt-unix
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-10-28 11:54:52 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2019-10-28 14:40:53 -0300
commit05a71af6a413b9ef663de5b1ffc3b980a5520958 (patch)
treea5cf9b9bb288208f5f66baa001a5e79f7a230de8 /pkgs/development/ocaml-modules/angstrom-lwt-unix
parent46eacf359be1c1c281fe607fdc0192d4a0347c40 (diff)
ocamlPackages.angstrom-lwt-unix: init at 0.12.1
Diffstat (limited to 'pkgs/development/ocaml-modules/angstrom-lwt-unix')
-rw-r--r--pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix b/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
new file mode 100644
index 000000000000..d249c4512914
--- /dev/null
+++ b/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchFromGitHub, buildDunePackage, angstrom, ocaml_lwt }:
+
+buildDunePackage rec {
+ pname = "angstrom-lwt-unix";
+
+ inherit (angstrom) version src;
+
+ minimumOCamlVersion = "4.03";
+
+ propagatedBuildInputs = [ angstrom ocaml_lwt ];
+
+ doCheck = true;
+
+ meta = {
+ inherit (angstrom.meta) homepage license;
+ description = "Lwt_unix support for Angstrom";
+ maintainers = with stdenv.lib.maintainers; [ romildo ];
+ };
+}