about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ipaddr
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-12-01 20:13:38 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-12-01 22:26:54 +0000
commit871fa250b6c75576771b5cb2ba3aa6cf0f7d2002 (patch)
tree78a4a1c76cc4d16c11ebf53f7393f11136216c6f /pkgs/development/ocaml-modules/ipaddr
parentae096444a2b99ed47cd330069b84c529b67fde98 (diff)
downloadnixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar.gz
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar.bz2
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar.lz
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar.xz
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.tar.zst
nixlib-871fa250b6c75576771b5cb2ba3aa6cf0f7d2002.zip
ocamlPackages.ipaddr: 2.7.2 -> 2.8.0
Diffstat (limited to 'pkgs/development/ocaml-modules/ipaddr')
-rw-r--r--pkgs/development/ocaml-modules/ipaddr/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/ipaddr/default.nix b/pkgs/development/ocaml-modules/ipaddr/default.nix
index 0b561ab6d695..14cbae6c6f8b 100644
--- a/pkgs/development/ocaml-modules/ipaddr/default.nix
+++ b/pkgs/development/ocaml-modules/ipaddr/default.nix
@@ -1,24 +1,24 @@
 { stdenv, buildOcaml, fetchurl, ocamlbuild, findlib
-, topkg, sexplib, ppx_sexp_conv, opam }:
+, jbuilder, sexplib, ppx_sexp_conv, ppx_deriving }:
 
 buildOcaml rec {
   name = "ipaddr";
-  version = "2.7.2";
+  version = "2.8.0";
 
   src = fetchurl {
     url = "https://github.com/mirage/ocaml-ipaddr/archive/${version}.tar.gz";
-    sha256 = "0mnjw1xjr8vyn5x1nnbbxfxhs77znwrkz8c144w47zk2pc3xrh9d";
+    sha256 = "1amb1pbm9ybpxy6190qygpj6nmbzzs2r6vx4xh5r6v89szx9rfxw";
   };
 
-  buildInputs = [ findlib ocamlbuild topkg ppx_sexp_conv opam ];
-  propagatedBuildInputs = [ sexplib ];
+  buildInputs = [ findlib ocamlbuild jbuilder ppx_sexp_conv ];
+  propagatedBuildInputs = [ ppx_deriving sexplib ];
 
-  inherit (topkg) buildPhase installPhase;
+  inherit (jbuilder) installPhase;
 
   meta = with stdenv.lib; {
     homepage = https://github.com/mirage/ocaml-ipaddr;
     description = "A library for manipulation of IP (and MAC) address representations ";
-    license = licenses.mit;
+    license = licenses.isc;
     maintainers = [ maintainers.ericbmerritt ];
   };
 }