ocaml-tuntap: init at 1.3.0

This commit is contained in:
Vincent Laporte 2015-12-15 21:57:54 +01:00
parent 038f4ce1d1
commit 4a00e1793b
2 changed files with 27 additions and 0 deletions

View File

@ -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;
};
}

View File

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