ocaml-tuntap: init at 1.3.0

wip/yesman
Vincent Laporte 9 years ago
parent 038f4ce1d1
commit 4a00e1793b
  1. 25
      pkgs/development/ocaml-modules/tuntap/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,25 @@
{ stdenv, fetchzip, ocaml, findlib, ipaddr }:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
stdenv.mkDerivation {
name = "ocaml-tuntap-1.3.0";
src = fetchzip {
url = https://github.com/mirage/ocaml-tuntap/archive/v1.3.0.tar.gz;
sha256 = "1cmd4kky875ks02gm2nb8yr80hmlfcnjdfyc63hvkh49acssy3d5";
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ ipaddr ];
createFindlibDestdir = true;
meta = {
description = "Bindings to the UNIX tuntap facility";
license = stdenv.lib.licenses.isc;
homepage = https://github.com/mirage/ocaml-tuntap;
inherit (ocaml.meta) platforms;
};
}

@ -4667,6 +4667,8 @@ let
re2 = callPackage ../development/ocaml-modules/re2 { };
tuntap = callPackage ../development/ocaml-modules/tuntap { };
tyxml = callPackage ../development/ocaml-modules/tyxml { };
ulex = callPackage ../development/ocaml-modules/ulex { };

Loading…
Cancel
Save