nixpkgs/pkgs/development/libraries/quantlib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
618 B
Nix
Raw Normal View History

2023-01-28 03:29:02 +00:00
{ 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;
2023-04-05 00:29:57 +00:00
maintainers = [];
2023-01-28 03:29:02 +00:00
};
}