Merge pull request #212755 from candyc1oud/quantlib

quantlib: init at 1.29
This commit is contained in:
figsoda 2023-01-27 23:09:58 -05:00 committed by GitHub
commit 25a22361ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, boost
}:
stdenv.mkDerivation rec {
pname = "quantlib";
version = "1.29";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "lballabio";
repo = "QuantLib";
rev = "QuantLib-v${version}";
sha256 = "sha256-TpVn3zPru/GtdNqDH45YdOkm7fkJzv/qay9SY3J6Jiw=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
meta = with lib; {
description = "A free/open-source library for quantitative finance";
homepage = "https://quantlib.org";
platforms = platforms.unix;
license = licenses.bsd3;
maintainers = with maintainers; [ candyc1oud ];
};
}

View File

@ -22699,6 +22699,8 @@ with pkgs;
quark-engine = callPackage ../tools/security/quark-engine { };
quantlib = callPackage ../development/libraries/quantlib { };
quesoglc = callPackage ../development/libraries/quesoglc { };
quickder = callPackage ../development/libraries/quickder {};