mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
7148e613d5
Co-authored-by: Ulrik Strid <ulrik.strid@outlook.com>
23 lines
321 B
Nix
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";
|
|
};
|
|
}
|