depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tar/unix.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

22 lines
321 B
Nix

{ lib
, buildDunePackage
, tar
, cstruct-lwt
, lwt
}:
buildDunePackage rec {
pname = "tar-unix";
inherit (tar) version src doCheck;
duneVersion = "3";
propagatedBuildInputs = [
tar
cstruct-lwt
lwt
];
meta = tar.meta // {
description = "Decode and encode tar format files from Unix";
};
}