nixpkgs/pkgs/development/libraries/ceres-solver/default.nix

44 lines
966 B
Nix
Raw Normal View History

{ stdenv
, eigen
, fetchurl
, cmake
, google-gflags ? null
, glog
, 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 {
name = "ceres-solver-${version}";
2017-03-12 01:10:06 +00:00
version = "1.12.0";
src = fetchurl {
url = "http://ceres-solver.org/ceres-solver-${version}.tar.gz";
2017-03-12 01:10:06 +00:00
sha256 = "15f8mwhcy9f5qggcc9dqwl5y687ykvmlidr686aqdq0ia7azwnvl";
};
2017-03-12 01:10:06 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ glog ]
++ stdenv.lib.optional (google-gflags != null) google-gflags;
inherit eigen;
doCheck = runTests;
checkTarget = "test";
cmakeFlags = "
-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3
";
meta = with stdenv.lib; {
description = "C++ library for modeling and solving large, complicated optimization problems";
license = licenses.bsd3;
homepage = http://ceres-solver.org;
2017-03-12 01:10:06 +00:00
maintainers = with maintainers; [ giogadi ];
platforms = platforms.unix;
};
}