tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.posix: 2.0.0 → 2.0.2
Vincent Laporte
3 years ago
7a9da552
9f691a92
+12
-6
4 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
posix
base.nix
socket.nix
time2.nix
types.nix
+4
-3
pkgs/development/ocaml-modules/posix/base.nix
···
4
4
5
5
buildDunePackage rec {
6
6
pname = "posix-base";
7
7
-
version = "2.0.0";
7
7
+
version = "2.0.2";
8
8
9
9
src = fetchFromGitHub {
10
10
owner = "savonet";
11
11
repo = "ocaml-posix";
12
12
rev = "v${version}";
13
13
-
sha256 = "18px8hfqcfy2lk8105ki3hrxxigs44gs046ba0fqda6wzd0hr82b";
13
13
+
hash = "sha256-xxNaPJZdcW+KnT7rYUuC7ZgmHtXTppZG2BOmpKweC/U=";
14
14
};
15
15
16
16
-
useDune2 = true;
16
16
+
duneVersion = "3";
17
17
+
minimalOCamlVersion = "4.08";
17
18
18
19
propagatedBuildInputs = [ ctypes integers ];
19
20
+3
-1
pkgs/development/ocaml-modules/posix/socket.nix
···
3
3
buildDunePackage {
4
4
pname = "posix-socket";
5
5
6
6
-
inherit (posix-base) version src useDune2;
6
6
+
inherit (posix-base) version src;
7
7
+
8
8
+
duneVersion = "3";
7
9
8
10
propagatedBuildInputs = [ posix-base ];
9
11
+2
pkgs/development/ocaml-modules/posix/time2.nix
···
5
5
6
6
inherit (posix-base) version src;
7
7
8
8
+
duneVersion = "3";
9
9
+
8
10
propagatedBuildInputs = [ posix-base posix-types unix-errno ];
9
11
10
12
doCheck = true;
+3
-2
pkgs/development/ocaml-modules/posix/types.nix
···
3
3
buildDunePackage {
4
4
pname = "posix-types";
5
5
6
6
-
inherit (posix-base) version src useDune2;
6
6
+
inherit (posix-base) version src;
7
7
8
8
-
minimumOCamlVersion = "4.03";
8
8
+
minimalOCamlVersion = "4.03";
9
9
+
duneVersion = "3";
9
10
10
11
propagatedBuildInputs = [ posix-base ];
11
12