g2o: include dependencies necessary to build CHOLMOD

Previously, CHOLMOD was enabled but not built because blas and lapack were missing.
wip/yesman
Thomas Watson 3 years ago
parent fd2233556f
commit d6be909d9b
  1. 6
      pkgs/development/libraries/g2o/default.nix

@ -1,5 +1,5 @@
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, eigen, suitesparse, libGLU
, qtbase, libqglviewer, makeWrapper }:
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, eigen, suitesparse, blas
, lapack, libGLU, qtbase, libqglviewer, makeWrapper }:
mkDerivation rec {
pname = "g2o";
@ -18,7 +18,7 @@ mkDerivation rec {
separateDebugInfo = true;
nativeBuildInputs = [ cmake makeWrapper ];
buildInputs = [ eigen suitesparse libGLU qtbase libqglviewer ];
buildInputs = [ eigen suitesparse blas lapack libGLU qtbase libqglviewer ];
# Silence noisy warning
CXXFLAGS = "-Wno-deprecated-copy";

Loading…
Cancel
Save