Skip to content

Commit a7e1ef2

Browse files
committed
ocamlPackages.posix-math2: init at 2.2.0
1 parent 29cee7d commit a7e1ef2

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
buildDunePackage,
3+
posix-base,
4+
unix-errno,
5+
}:
6+
7+
buildDunePackage {
8+
pname = "posix-math2";
9+
inherit (posix-base) src version;
10+
11+
propagatedBuildInputs = [
12+
posix-base
13+
unix-errno
14+
];
15+
16+
meta = posix-base.meta // {
17+
description = "Bindings for posix math";
18+
};
19+
}

pkgs/top-level/ocaml-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1570,6 +1570,8 @@ let
15701570

15711571
posix-base = callPackage ../development/ocaml-modules/posix/base.nix { };
15721572

1573+
posix-math2 = callPackage ../development/ocaml-modules/posix/math2.nix { };
1574+
15731575
posix-socket = callPackage ../development/ocaml-modules/posix/socket.nix { };
15741576

15751577
posix-time2 = callPackage ../development/ocaml-modules/posix/time2.nix { };

0 commit comments

Comments
 (0)