File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
development/ocaml-modules/tar Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -1968,6 +1968,10 @@ let
1968
1968
inherit ( pkgs ) git ;
1969
1969
} ;
1970
1970
1971
+ tar-eio = callPackage ../development/ocaml-modules/tar/eio.nix {
1972
+ inherit ( pkgs ) git ;
1973
+ } ;
1974
+
1971
1975
tcpip = callPackage ../development/ocaml-modules/tcpip { } ;
1972
1976
1973
1977
tcslib = callPackage ../development/ocaml-modules/tcslib { } ;
You can’t perform that action at this time.
0 commit comments