2023-08-22 20:05:09 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, darwin
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, withBlas ? true, blas
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-12-26 17:43:05 +00:00
|
|
|
pname = "cminpack";
|
2023-08-22 20:05:09 +00:00
|
|
|
version = "1.3.8";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "devernay";
|
|
|
|
repo = "cminpack";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-eFJ43cHbSbWld+gPpMaNiBy1X5TIcN9aVxjh8PxvVDU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
strictDeps = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals withBlas [
|
|
|
|
blas
|
|
|
|
] ++ lib.optionals (withBlas && stdenv.isDarwin) [
|
|
|
|
darwin.apple_sdk.frameworks.Accelerate
|
|
|
|
darwin.apple_sdk.frameworks.CoreGraphics
|
|
|
|
darwin.apple_sdk.frameworks.CoreVideo
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DUSE_BLAS=${if withBlas then "ON" else "OFF"}"
|
|
|
|
"-DBUILD_SHARED_LIBS=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Software for solving nonlinear equations and nonlinear least squares problems";
|
2023-08-22 20:05:09 +00:00
|
|
|
homepage = "http://devernay.free.fr/hacks/cminpack/";
|
|
|
|
changelog = "https://github.com/devernay/cminpack/blob/v${version}/README.md#history";
|
|
|
|
license = lib.licenses.bsd3;
|
2021-03-12 07:09:13 +00:00
|
|
|
platforms = lib.platforms.all;
|
2023-08-22 20:05:09 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|