repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
tar
/
unix.nix
blob
92b5a9237f5de7e636730dc472031c2fc619931a
1
{ lib
2
, buildDunePackage
3
, tar
4
, cstruct-lwt
5
, lwt
6
, git
7
}:
8
9
buildDunePackage rec {
10
pname = "tar-unix";
11
inherit (tar) version src doCheck;
12
13
propagatedBuildInputs = [
14
tar
15
cstruct-lwt
16
lwt
17
];
18
19
nativeCheckInputs = [
20
git
21
];
22
23
meta = tar.meta // {
24
description = "Decode and encode tar format files from Unix";
25
};
26
}