2015-03-12 19:48:58 +00:00
|
|
|
{ stdenv
|
|
|
|
, eigen
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2018-09-13 22:44:14 +01:00
|
|
|
, google-gflags
|
2016-11-19 12:48:05 +00:00
|
|
|
, glog
|
2015-03-12 19:48:58 +00:00
|
|
|
, runTests ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
# google-gflags is required to run tests
|
|
|
|
assert runTests -> google-gflags != null;
|
|
|
|
|
2017-03-12 01:10:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-12 19:48:58 +00:00
|
|
|
name = "ceres-solver-${version}";
|
2018-04-08 04:52:59 +01:00
|
|
|
version = "1.14.0";
|
2015-03-12 19:48:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ceres-solver.org/ceres-solver-${version}.tar.gz";
|
2018-04-08 04:52:59 +01:00
|
|
|
sha256 = "13lfxy8x58w8vprr0nkbzziaijlh0vvqshgahvcgw0mrqdgh0i27";
|
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 ]
|
2018-09-13 22:44:14 +01:00
|
|
|
++ stdenv.lib.optional runTests google-gflags;
|
|
|
|
|
|
|
|
# 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";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ library for modeling and solving large, complicated optimization problems";
|
|
|
|
license = licenses.bsd3;
|
2017-08-01 21:03:30 +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
|
|
|
};
|
|
|
|
}
|