summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2019-10-29 14:31:09 +0000
committerGitHub <noreply@github.com>2019-10-29 14:31:09 +0000
commit5a4e67ad0384791bf45ed12f33c75fc79d9eaf16 (patch)
tree63321a27ce4d7c2b45a73a0240948d47561b8ef2 /pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
parent1155bb1c2f815ec40959499627fac8a6211b20a4 (diff)
parent432258f0da7e62ce1210b1a239bae82d1c67827e (diff)
downloadnixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar.gz
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar.bz2
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar.lz
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar.xz
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.tar.zst
nixpkgs-5a4e67ad0384791bf45ed12f33c75fc79d9eaf16.zip
Merge pull request #72171 from romildo/upd.ocamlearlybird
ocamlPackages.ocamlearlybird: init at 0.1.5; ocamlPackages.angstrom: 0.10.0 -> 0.12.1
Diffstat (limited to 'pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix')
-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 00000000000..d249c451291
--- /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 ];
+  };
+}