ocamlPackages.tar-eio: init at 3.3.0

This commit is contained in:
Marijan Petričević 2025-05-23 10:50:28 -05:00 committed by Vincent Laporte
parent ec8b0eeac8
commit ac08a247bc
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
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";
};
}

View File

@ -1968,6 +1968,10 @@ let
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 { };