2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv
|
2015-03-12 12:48:58 -07:00
|
|
|
, eigen
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2019-07-25 02:04:55 -07:00
|
|
|
, gflags
|
2016-11-19 04:48:05 -08:00
|
|
|
, glog
|
2015-03-12 12:48:58 -07:00
|
|
|
, runTests ? false
|
|
|
|
}:
|
|
|
|
|
2019-07-25 02:04:55 -07:00
|
|
|
# gflags is required to run tests
|
|
|
|
assert runTests -> gflags != null;
|
2015-03-12 12:48:58 -07:00
|
|
|
|
2017-03-11 17:10:06 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ceres-solver";
|
2020-10-29 17:00:13 -07:00
|
|
|
version = "2.0.0";
|
2015-03-12 12:48:58 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ceres-solver.org/ceres-solver-${version}.tar.gz";
|
2020-10-29 17:00:13 -07:00
|
|
|
sha256 = "00vng9vnmdb1qga01m0why90m0041w7bn6kxa2h4m26aflfqla8h";
|
2015-03-12 12:48:58 -07:00
|
|
|
};
|
|
|
|
|
2017-03-11 17:10:06 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-06-28 02:04:53 -07:00
|
|
|
buildInputs = [ eigen glog ]
|
2021-01-21 09:00:13 -08:00
|
|
|
++ lib.optional runTests gflags;
|
2018-09-13 14:44:14 -07:00
|
|
|
|
|
|
|
# The Basel BUILD file conflicts with the cmake build directory on
|
|
|
|
# case-insensitive filesystems, eg. darwin.
|
|
|
|
preConfigure = ''
|
|
|
|
rm BUILD
|
|
|
|
'';
|
2015-03-12 12:48:58 -07:00
|
|
|
|
|
|
|
doCheck = runTests;
|
|
|
|
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2015-03-12 12:48:58 -07:00
|
|
|
description = "C++ library for modeling and solving large, complicated optimization problems";
|
|
|
|
license = licenses.bsd3;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://ceres-solver.org";
|
2017-03-11 17:10:06 -08:00
|
|
|
maintainers = with maintainers; [ giogadi ];
|
|
|
|
platforms = platforms.unix;
|
2015-03-12 12:48:58 -07:00
|
|
|
};
|
|
|
|
}
|