about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix b/nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix
new file mode 100644
index 000000000000..3d5959fe64e2
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, buildDunePackage, sexplib, ppx_sexp_conv }:
+
+buildDunePackage rec {
+  pname = "ipaddr";
+  version = "2.8.0";
+
+  src = fetchurl {
+    url = "https://github.com/mirage/ocaml-${pname}/archive/${version}.tar.gz";
+    sha256 = "1amb1pbm9ybpxy6190qygpj6nmbzzs2r6vx4xh5r6v89szx9rfxw";
+  };
+
+  propagatedBuildInputs = [ ppx_sexp_conv sexplib ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/mirage/ocaml-ipaddr;
+    description = "A library for manipulation of IP (and MAC) address representations ";
+    license = licenses.isc;
+    maintainers = [ maintainers.ericbmerritt ];
+  };
+}