Unverified Commit beb62775 authored by Justin Bedő's avatar Justin Bedő Committed by GitHub
Browse files

Merge pull request #300087 from Kupac/fix_quantlib

rPackages.RQuantLib: Fix quantlib
parents 4cba8b53 4896b1d5
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -7,25 +7,33 @@

stdenv.mkDerivation rec {
  pname = "quantlib";
  version = "1.29";
  version = "1.33";

  outputs = [ "out" "dev" ];

  src = fetchFromGitHub {
    owner = "lballabio";
    repo = "QuantLib";
    rev = "QuantLib-v${version}";
    sha256 = "sha256-TpVn3zPru/GtdNqDH45YdOkm7fkJzv/qay9SY3J6Jiw=";
    rev = "v${version}";
    sha256 = "sha256-j2nRm6ebf5OU6mqmcC7wQf/qlf/K9RmmCAnfT+Au8ZM=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ boost ];

  # Required by RQuantLib, may be beneficial for others too
  cmakeFlags = [ "-DQL_HIGH_RESOLUTION_DATE=ON" ];

  # Needed for RQuantLib and possible others
  postInstall = ''
    cp ./quantlib-config $out/bin/
  '';

  meta = with lib; {
    description = "A free/open-source library for quantitative finance";
    homepage = "https://quantlib.org";
    platforms = platforms.unix;
    license = licenses.bsd3;
    maintainers = [];
    maintainers = [ maintainers.kupac ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -578,6 +578,7 @@ let
    odbc = [ pkgs.pkg-config ];
    openssl = [ pkgs.pkg-config ];
    pdftools = [ pkgs.pkg-config ];
    RQuantLib = with pkgs; [ quantlib.dev boost.dev ];
    sf = with pkgs; [ pkg-config sqlite.dev proj.dev ];
    terra = with pkgs; [ pkg-config sqlite.dev proj.dev ];
    showtext = [ pkgs.pkg-config ];