Unverified Commit 56e39761 authored by Ulrik Strid's avatar Ulrik Strid Committed by GitHub
Browse files

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

parents 3f22849c a7e1ef28
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -13,11 +13,10 @@ buildDunePackage rec {
  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-posix";
    rev = "v${version}";
    tag = "v${version}";
    hash = "sha256-JKJIiuo4lW8DmcK1mJlT22784J1NS2ig860jDbRIjIo=";
  };

  duneVersion = "3";
  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
+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";
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ buildDunePackage {

  inherit (posix-base) version src;

  duneVersion = "3";
  minimalOCamlVersion = "4.12";

  propagatedBuildInputs = [ posix-base ];

+0 −2
Original line number Diff line number Diff line
@@ -11,8 +11,6 @@ buildDunePackage {

  inherit (posix-base) version src;

  duneVersion = "3";

  propagatedBuildInputs = [
    posix-base
    posix-types
+0 −3
Original line number Diff line number Diff line
@@ -5,9 +5,6 @@ buildDunePackage {

  inherit (posix-base) version src;

  minimalOCamlVersion = "4.03";
  duneVersion = "3";

  propagatedBuildInputs = [ posix-base ];

  meta = posix-base.meta // {
Loading