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

26 lines
746 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, ocamlbuild, findlib
2018-09-05 16:11:47 +00:00
, dune, sexplib, ppx_sexp_conv
2018-07-05 19:40:30 +00:00
}:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ipaddr-${version}";
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";
};
2018-09-05 16:11:47 +00:00
buildInputs = [ ocaml findlib ocamlbuild dune ];
2018-07-05 19:40:30 +00:00
propagatedBuildInputs = [ ppx_sexp_conv sexplib ];
2018-09-05 16:11:47 +00:00
inherit (dune) 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 ];
};
}