tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.tar: 2.2.2 → 2.5.1
Vincent Laporte
2 years ago
90fcbd21
9b7c14b3
+10
-10
3 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
tar
default.nix
unix.nix
top-level
ocaml-packages.nix
+2
-8
pkgs/development/ocaml-modules/tar/default.nix
reviewed
···
2
2
, fetchurl
3
3
, buildDunePackage
4
4
, camlp-streams
5
5
-
, ppx_cstruct
6
5
, cstruct
7
6
, decompress
8
7
}:
9
8
10
9
buildDunePackage rec {
11
10
pname = "tar";
12
12
-
version = "2.2.2";
11
11
+
version = "2.5.1";
13
12
src = fetchurl {
14
13
url = "https://github.com/mirage/ocaml-tar/releases/download/v${version}/tar-${version}.tbz";
15
15
-
hash = "sha256-Q+41LPFZFHi9sXKFV3F13FZZNO3KXRSElEmr+nH58Uw=";
14
14
+
hash = "sha256-00QPSIZnoFvhZEnDcdEDJUqhE0uKLxNMM2pUE8aMPfQ=";
16
15
};
17
16
18
18
-
duneVersion = "3";
19
17
minimalOCamlVersion = "4.08";
20
18
21
19
propagatedBuildInputs = [
22
20
camlp-streams
23
21
cstruct
24
22
decompress
25
25
-
];
26
26
-
27
27
-
buildInputs = [
28
28
-
ppx_cstruct
29
23
];
30
24
31
25
doCheck = true;
+5
-1
pkgs/development/ocaml-modules/tar/unix.nix
reviewed
···
3
3
, tar
4
4
, cstruct-lwt
5
5
, lwt
6
6
+
, git
6
7
}:
7
8
8
9
buildDunePackage rec {
9
10
pname = "tar-unix";
10
11
inherit (tar) version src doCheck;
11
11
-
duneVersion = "3";
12
12
13
13
propagatedBuildInputs = [
14
14
tar
15
15
cstruct-lwt
16
16
lwt
17
17
+
];
18
18
+
19
19
+
nativeCheckInputs = [
20
20
+
git
17
21
];
18
22
19
23
meta = tar.meta // {
+3
-1
pkgs/top-level/ocaml-packages.nix
reviewed
···
1693
1693
1694
1694
tar = callPackage ../development/ocaml-modules/tar { };
1695
1695
1696
1696
-
tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix { };
1696
1696
+
tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix {
1697
1697
+
inherit (pkgs) git;
1698
1698
+
};
1697
1699
1698
1700
tcpip = callPackage ../development/ocaml-modules/tcpip { };
1699
1701