nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix

25 lines
742 B
Nix
Raw Normal View History

{ stdenv, buildOcaml, fetchurl, ocamlbuild, findlib
2017-12-01 20:13:38 +00:00
, jbuilder, sexplib, ppx_sexp_conv, ppx_deriving }:
buildOcaml rec {
name = "ipaddr";
2017-12-01 20:13:38 +00:00
version = "2.8.0";
src = fetchurl {
url = "https://github.com/mirage/ocaml-ipaddr/archive/${version}.tar.gz";
2017-12-01 20:13:38 +00:00
sha256 = "1amb1pbm9ybpxy6190qygpj6nmbzzs2r6vx4xh5r6v89szx9rfxw";
};
2017-12-01 20:13:38 +00:00
buildInputs = [ findlib ocamlbuild jbuilder ppx_sexp_conv ];
propagatedBuildInputs = [ ppx_deriving sexplib ];
2017-12-01 20:13:38 +00:00
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 ";
2017-12-01 20:13:38 +00:00
license = licenses.isc;
maintainers = [ maintainers.ericbmerritt ];
};
}