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

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

49 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, cmake
, darwin
, fetchFromGitHub
, fetchurl
, withBlas ? true, blas
}:
2014-11-13 13:33:15 +00:00
stdenv.mkDerivation rec {
pname = "cminpack";
version = "1.3.8";
src = fetchFromGitHub {
owner = "devernay";
repo = "cminpack";
rev = "v${version}";
hash = "sha256-eFJ43cHbSbWld+gPpMaNiBy1X5TIcN9aVxjh8PxvVDU=";
};
strictDeps = true;
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"}"
];
meta = {
description = "Software for solving nonlinear equations and nonlinear least squares problems";
2023-08-10 04:20:00 +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-08 15:54:25 +00:00
platforms = lib.platforms.all;
2023-08-10 04:20:00 +00:00
maintainers = [ ];
};
}