3a0933a030
* ocamlPackages.{ipaddr,macaddr}: 3.1.0 → 5.0.0 * ipaddr-cstruct: new package (since 4.0.0) * ipaddr-sexp: new package (since 4.0.0) * macaddr-cstruct: new package (since 4.0.0) * macaddr-sexp: new package (since 4.0.0) * macaddr: enable tests (don't depend on ipaddr anymore) * ocamlPackages.tuntap: 1.3.0 → 2.0.0 * ocamlPackages.conduit{,-lwt,-lwt-unix}: 1.4.0 → 2.2.2 * ocamlPackages.cohttp{,-lwt,-lwt-unix}: 2.1.3 → 2.5.1 * ocamlPackages: use dune 2 if pkg (indirectly) depends on cohttp-lwt-unix dune refuses to build a package if one of its dependencies uses dune 2.
28 lines
684 B
Nix
28 lines
684 B
Nix
{ lib, buildDunePackage, fetchurl
|
|
, ipaddr, macaddr, cmdliner
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tuntap";
|
|
version = "2.0.0";
|
|
|
|
minimumOCamlVersion = "4.04.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/ocaml-tuntap/releases/download/v${version}/tuntap-v${version}.tbz";
|
|
sha256 = "12wmls28h3jzikwyfw08d5f7ycsc9njwzbhd3qk2l8jnf5rakfsa";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ipaddr macaddr cmdliner ];
|
|
|
|
# tests manipulate network devices and use network
|
|
# also depend on LWT 5
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Bindings to the UNIX tuntap facility";
|
|
license = lib.licenses.isc;
|
|
homepage = "https://github.com/mirage/ocaml-tuntap";
|
|
};
|
|
}
|