tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.ipaddr: 2.7.2 -> 2.8.0
Vincent Laporte
8 years ago
871fa250
ae096444
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
ipaddr
default.nix
+7
-7
pkgs/development/ocaml-modules/ipaddr/default.nix
···
1
1
{ stdenv, buildOcaml, fetchurl, ocamlbuild, findlib
2
2
-
, topkg, sexplib, ppx_sexp_conv, opam }:
2
2
+
, jbuilder, sexplib, ppx_sexp_conv, ppx_deriving }:
3
3
4
4
buildOcaml rec {
5
5
name = "ipaddr";
6
6
-
version = "2.7.2";
6
6
+
version = "2.8.0";
7
7
8
8
src = fetchurl {
9
9
url = "https://github.com/mirage/ocaml-ipaddr/archive/${version}.tar.gz";
10
10
-
sha256 = "0mnjw1xjr8vyn5x1nnbbxfxhs77znwrkz8c144w47zk2pc3xrh9d";
10
10
+
sha256 = "1amb1pbm9ybpxy6190qygpj6nmbzzs2r6vx4xh5r6v89szx9rfxw";
11
11
};
12
12
13
13
-
buildInputs = [ findlib ocamlbuild topkg ppx_sexp_conv opam ];
14
14
-
propagatedBuildInputs = [ sexplib ];
13
13
+
buildInputs = [ findlib ocamlbuild jbuilder ppx_sexp_conv ];
14
14
+
propagatedBuildInputs = [ ppx_deriving sexplib ];
15
15
16
16
-
inherit (topkg) buildPhase installPhase;
16
16
+
inherit (jbuilder) installPhase;
17
17
18
18
meta = with stdenv.lib; {
19
19
homepage = https://github.com/mirage/ocaml-ipaddr;
20
20
description = "A library for manipulation of IP (and MAC) address representations ";
21
21
-
license = licenses.mit;
21
21
+
license = licenses.isc;
22
22
maintainers = [ maintainers.ericbmerritt ];
23
23
};
24
24
}