Skip to content

Commit ac08a24

Browse files
marijanpvbgl
authored andcommitted
ocamlPackages.tar-eio: init at 3.3.0
1 parent ec8b0ee commit ac08a24

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
buildDunePackage,
3+
tar,
4+
eio,
5+
git,
6+
}:
7+
8+
buildDunePackage {
9+
pname = "tar-eio";
10+
inherit (tar) version src doCheck;
11+
12+
minimalOCamlVersion = "5.1";
13+
14+
propagatedBuildInputs = [
15+
tar
16+
eio
17+
];
18+
19+
nativeCheckInputs = [
20+
git
21+
];
22+
23+
meta = tar.meta // {
24+
description = "Decode and encode tar format files using Eio";
25+
};
26+
}

pkgs/top-level/ocaml-packages.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,6 +1968,10 @@ let
19681968
inherit (pkgs) git;
19691969
};
19701970

1971+
tar-eio = callPackage ../development/ocaml-modules/tar/eio.nix {
1972+
inherit (pkgs) git;
1973+
};
1974+
19711975
tcpip = callPackage ../development/ocaml-modules/tcpip { };
19721976

19731977
tcslib = callPackage ../development/ocaml-modules/tcslib { };

0 commit comments

Comments
 (0)