mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
quantlib: 1.29 -> 1.33
Upgrade library and enable intraday (=high resolution) dates Unorphan library Indent better cmakeflags!
This commit is contained in:
parent
ec81e8e3b4
commit
98280b5936
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user