+4
-2
pkgs/development/ocaml-modules/tar/default.nix
+4
-2
pkgs/development/ocaml-modules/tar/default.nix
···
1
{ lib
2
, fetchFromGitHub
3
, buildDunePackage
4
, ppx_cstruct
5
, cstruct
6
, re
···
9
10
buildDunePackage rec {
11
pname = "tar";
12
-
version = "1.1.0";
13
src = fetchFromGitHub {
14
owner = "mirage";
15
repo = "ocaml-tar";
16
rev = "v${version}";
17
-
sha256 = "14k24vn3q5jl0iyrynb5vwg80670qsv12fsmc6cdgh4zwdpjh7zs";
18
};
19
20
useDune2 = true;
21
22
propagatedBuildInputs = [
23
ppx_cstruct
24
cstruct
25
re
···
1
{ lib
2
, fetchFromGitHub
3
, buildDunePackage
4
+
, camlp-streams
5
, ppx_cstruct
6
, cstruct
7
, re
···
10
11
buildDunePackage rec {
12
pname = "tar";
13
+
version = "2.0.1";
14
src = fetchFromGitHub {
15
owner = "mirage";
16
repo = "ocaml-tar";
17
rev = "v${version}";
18
+
sha256 = "1zr1ak164k1jm15xwqjf1iv77kdrrahak33wrxg7lifz9nnl0dms";
19
};
20
21
useDune2 = true;
22
23
propagatedBuildInputs = [
24
+
camlp-streams
25
ppx_cstruct
26
cstruct
27
re