2021-11-15 12:14:12 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchpatch
|
2015-03-12 19:48:58 +00:00
|
|
|
, fetchurl
|
2021-11-15 12:14:12 +00:00
|
|
|
, blas
|
2015-03-12 19:48:58 +00:00
|
|
|
, cmake
|
2021-11-15 12:14:12 +00:00
|
|
|
, eigen
|
2019-07-25 09:04:55 +00:00
|
|
|
, gflags
|
2016-11-19 12:48:05 +00:00
|
|
|
, glog
|
2021-11-15 12:14:12 +00:00
|
|
|
, suitesparse
|
2023-02-12 22:12:51 +00:00
|
|
|
, metis
|
2015-03-12 19:48:58 +00:00
|
|
|
, runTests ? false
|
2021-11-15 12:14:12 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
, withBlas ? true
|
2015-03-12 19:48:58 +00:00
|
|
|
}:
|
|
|
|
|
2019-07-25 09:04:55 +00:00
|
|
|
# gflags is required to run tests
|
|
|
|
assert runTests -> gflags != null;
|
2015-03-12 19:48:58 +00:00
|
|
|
|
2017-03-12 01:10:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ceres-solver";
|
2023-01-10 11:58:19 +00:00
|
|
|
version = "2.1.0";
|
2015-03-12 19:48:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ceres-solver.org/ceres-solver-${version}.tar.gz";
|
2023-01-10 11:58:19 +00:00
|
|
|
sha256 = "sha256-99dO7N4K7XW/xR7EjJHQH+Fqa/FrzhmHpwcyhnAeL8Y=";
|
2015-03-12 19:48:58 +00:00
|
|
|
};
|
|
|
|
|
2021-11-15 12:14:12 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-03-12 01:10:06 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-09-17 15:58:24 +00:00
|
|
|
buildInputs = lib.optional runTests gflags;
|
2021-11-15 12:14:12 +00:00
|
|
|
propagatedBuildInputs = [ eigen glog ]
|
2023-02-12 22:12:51 +00:00
|
|
|
++ lib.optionals withBlas [ blas suitesparse metis ];
|
2021-11-15 12:14:12 +00:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=${if enableStatic then "OFF" else "ON"}"
|
|
|
|
];
|
2018-09-13 21:44:14 +00:00
|
|
|
|
|
|
|
# The Basel BUILD file conflicts with the cmake build directory on
|
|
|
|
# case-insensitive filesystems, eg. darwin.
|
|
|
|
preConfigure = ''
|
|
|
|
rm BUILD
|
|
|
|
'';
|
2015-03-12 19:48:58 +00:00
|
|
|
|
|
|
|
doCheck = runTests;
|
|
|
|
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-03-12 19:48:58 +00:00
|
|
|
description = "C++ library for modeling and solving large, complicated optimization problems";
|
|
|
|
license = licenses.bsd3;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://ceres-solver.org";
|
2017-03-12 01:10:06 +00:00
|
|
|
maintainers = with maintainers; [ giogadi ];
|
|
|
|
platforms = platforms.unix;
|
2015-03-12 19:48:58 +00:00
|
|
|
};
|
|
|
|
}
|