1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/eiquadprog/default.nix

25 lines
802 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, cmake, doxygen, eigen, git, graphviz }:
buildRosPackage {
pname = "ros-jazzy-eiquadprog";
version = "1.2.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/eiquadprog-release/archive/release/jazzy/eiquadprog/1.2.9-1.tar.gz";
name = "1.2.9-1.tar.gz";
sha256 = "3071be815055c735483451c8b5f8e6fb762bb78293780df999075b441359aae5";
};
buildType = "cmake";
buildInputs = [ cmake doxygen git ];
propagatedBuildInputs = [ ament-cmake boost eigen graphviz ];
nativeBuildInputs = [ cmake ];
meta = {
description = "Eiquadprog a QP solver using active sets";
license = with lib.licenses; [ lgpl3Only ];
};
}