Commit ac08a247 authored by Marijan Petričević's avatar Marijan Petričević Committed by Vincent Laporte
Browse files

ocamlPackages.tar-eio: init at 3.3.0

parent ec8b0eea
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };