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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
344 B
Nix
Raw Normal View History

2021-09-21 11:43:13 +03:00
{ lib
, buildDunePackage
, tar
, cstruct-lwt
, lwt
2023-09-05 22:47:52 +03:00
, git
2021-09-21 11:43:13 +03:00
}:
buildDunePackage rec {
pname = "tar-unix";
inherit (tar) version src doCheck;
2021-09-21 11:43:13 +03:00
propagatedBuildInputs = [
tar
cstruct-lwt
lwt
];
2023-09-05 22:47:52 +03:00
nativeCheckInputs = [
git
];
meta = tar.meta // {
2021-09-21 11:43:13 +03:00
description = "Decode and encode tar format files from Unix";
};
}