nixpkgs/pkgs/development/ocaml-modules/tar/unix.nix
Vincent Laporte 7148e613d5
ocamlPackages.tar: 2.0.1 → 2.2.2 (#209021)
Co-authored-by: Ulrik Strid <ulrik.strid@outlook.com>
2023-01-11 07:50:23 +01:00

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