depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tar/unix.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

26 lines
344 B
Nix

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