depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tar/unix.nix

23 lines
321 B
Nix
Raw Normal View History

{ 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";
};
}