ocamlPackages.tar-eio: init at 3.3.0

Changed files
+30
pkgs
development
ocaml-modules
tar
top-level
+26
pkgs/development/ocaml-modules/tar/eio.nix
···
+
{
+
buildDunePackage,
+
tar,
+
eio,
+
git,
+
}:
+
+
buildDunePackage {
+
pname = "tar-eio";
+
inherit (tar) version src doCheck;
+
+
minimalOCamlVersion = "5.1";
+
+
propagatedBuildInputs = [
+
tar
+
eio
+
];
+
+
nativeCheckInputs = [
+
git
+
];
+
+
meta = tar.meta // {
+
description = "Decode and encode tar format files using Eio";
+
};
+
}
+4
pkgs/top-level/ocaml-packages.nix
···
inherit (pkgs) git;
};
+
tar-eio = callPackage ../development/ocaml-modules/tar/eio.nix {
+
inherit (pkgs) git;
+
};
+
tcpip = callPackage ../development/ocaml-modules/tcpip { };
tcslib = callPackage ../development/ocaml-modules/tcslib { };