about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tar/unix.nix
blob: 92b5a9237f5de7e636730dc472031c2fc619931a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildDunePackage
, tar
, cstruct-lwt
, lwt
, git
}:

buildDunePackage rec {
  pname = "tar-unix";
  inherit (tar) version src doCheck;

  propagatedBuildInputs = [
    tar
    cstruct-lwt
    lwt
  ];

  nativeCheckInputs = [
    git
  ];

  meta = tar.meta // {
    description = "Decode and encode tar format files from Unix";
  };
}