2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2015-03-12 19:48:58 +00:00
|
|
|
, eigen
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2019-07-25 10:04:55 +01:00
|
|
|
, gflags
|
2016-11-19 12:48:05 +00:00
|
|
|
, glog
|
2015-03-12 19:48:58 +00:00
|
|
|
, runTests ? false
|
|
|
|
}:
|
|
|
|
|
2019-07-25 10:04:55 +01: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 13:41:18 +01:00
|
|
|
pname = "ceres-solver";
|
2020-10-30 00:00:13 +00:00
|
|
|
version = "2.0.0";
|
2015-03-12 19:48:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ceres-solver.org/ceres-solver-${version}.tar.gz";
|
2020-10-30 00:00:13 +00:00
|
|
|
sha256 = "00vng9vnmdb1qga01m0why90m0041w7bn6kxa2h4m26aflfqla8h";
|
2015-03-12 19:48:58 +00:00
|
|
|
};
|
|
|
|
|
2017-03-12 01:10:06 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-06-28 10:04:53 +01:00
|
|
|
buildInputs = [ eigen glog ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional runTests gflags;
|
2018-09-13 22:44:14 +01: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 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|