aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix b/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
new file mode 100644
index 000000000000..0d4ab400dd3e
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-unix/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchFromGitHub, buildDunePackage, angstrom }:
+
+buildDunePackage rec {
+ pname = "angstrom-unix";
+
+ inherit (angstrom) version src;
+
+ minimumOCamlVersion = "4.03";
+
+ propagatedBuildInputs = [ angstrom ];
+
+ doCheck = true;
+
+ meta = {
+ inherit (angstrom.meta) homepage license;
+ description = "Unix support for Angstrom";
+ maintainers = with stdenv.lib.maintainers; [ romildo ];
+ };
+}