Unverified Commit a7e1ef28 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.posix-math2: init at 2.2.0

parent 29cee7df
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
{
  buildDunePackage,
  posix-base,
  unix-errno,
}:

buildDunePackage {
  pname = "posix-math2";
  inherit (posix-base) src version;

  propagatedBuildInputs = [
    posix-base
    unix-errno
  ];

  meta = posix-base.meta // {
    description = "Bindings for posix math";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1570,6 +1570,8 @@ let

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

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

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

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