eiquadprog: build documentation

This commit is contained in:
Guilhem Saurel 2024-09-18 12:14:59 +02:00
parent 641aa81f63
commit 784a937962

View File

@ -1,10 +1,12 @@
{ {
boost, boost,
cmake, cmake,
doxygen,
eigen, eigen,
fetchFromGitHub, fetchFromGitHub,
jrl-cmakemodules, jrl-cmakemodules,
lib, lib,
pkg-config,
stdenv, stdenv,
}: }:
@ -19,8 +21,15 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-VqRx06sCCZrnB+NWm6Z9OMKzjKQIydGgKQU6fMY7phk="; hash = "sha256-VqRx06sCCZrnB+NWm6Z9OMKzjKQIydGgKQU6fMY7phk=";
}; };
outputs = [
"out"
"doc"
];
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
doxygen
pkg-config
jrl-cmakemodules jrl-cmakemodules
]; ];
propagatedBuildInputs = [ eigen ]; propagatedBuildInputs = [ eigen ];