mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
802 B
Nix
26 lines
802 B
Nix
![]() |
|
||
|
# Copyright 2024 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 ];
|
||
|
};
|
||
|
}
|