Files

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

27 lines
341 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
tar,
eio,
git,
}:
buildDunePackage {
pname = "tar-eio";
inherit (tar) version src doCheck;
minimalOCamlVersion = "5.1";
propagatedBuildInputs = [
tar
eio
];
nativeCheckInputs = [
git
];
meta = tar.meta // {
description = "Decode and encode tar format files using Eio";
};
}