ocamlPackages.posix-math2: init at 2.2.0 (#385383)

authored by Ulrik Strid and committed by GitHub 56e39761 3f22849c

+23 -8
+1 -2
pkgs/development/ocaml-modules/posix/base.nix
··· 13 13 src = fetchFromGitHub { 14 14 owner = "savonet"; 15 15 repo = "ocaml-posix"; 16 - rev = "v${version}"; 16 + tag = "v${version}"; 17 17 hash = "sha256-JKJIiuo4lW8DmcK1mJlT22784J1NS2ig860jDbRIjIo="; 18 18 }; 19 19 20 - duneVersion = "3"; 21 20 minimalOCamlVersion = "4.08"; 22 21 23 22 propagatedBuildInputs = [
+19
pkgs/development/ocaml-modules/posix/math2.nix
··· 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 + }
+1 -1
pkgs/development/ocaml-modules/posix/socket.nix
··· 5 5 6 6 inherit (posix-base) version src; 7 7 8 - duneVersion = "3"; 8 + minimalOCamlVersion = "4.12"; 9 9 10 10 propagatedBuildInputs = [ posix-base ]; 11 11
-2
pkgs/development/ocaml-modules/posix/time2.nix
··· 11 11 12 12 inherit (posix-base) version src; 13 13 14 - duneVersion = "3"; 15 - 16 14 propagatedBuildInputs = [ 17 15 posix-base 18 16 posix-types
-3
pkgs/development/ocaml-modules/posix/types.nix
··· 5 5 6 6 inherit (posix-base) version src; 7 7 8 - minimalOCamlVersion = "4.03"; 9 - duneVersion = "3"; 10 - 11 8 propagatedBuildInputs = [ posix-base ]; 12 9 13 10 meta = posix-base.meta // {
+2
pkgs/top-level/ocaml-packages.nix
··· 1570 1570 1571 1571 posix-base = callPackage ../development/ocaml-modules/posix/base.nix { }; 1572 1572 1573 + posix-math2 = callPackage ../development/ocaml-modules/posix/math2.nix { }; 1574 + 1573 1575 posix-socket = callPackage ../development/ocaml-modules/posix/socket.nix { }; 1574 1576 1575 1577 posix-time2 = callPackage ../development/ocaml-modules/posix/time2.nix { };