mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
25 lines
806 B
Nix
25 lines
806 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-rolling-eiquadprog";
|
|
version = "1.2.9-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/eiquadprog-release/archive/release/rolling/eiquadprog/1.2.9-1.tar.gz";
|
|
name = "1.2.9-1.tar.gz";
|
|
sha256 = "5374f218b421443c74780e77f069bb7615247814d847c7c9ec04b8a0f5ca92e6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|