2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, doxygen, eigen, git, matio, python3Packages, simde }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-proxsuite";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "0.6.5-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/proxsuite-release/archive/release/jazzy/proxsuite/0.6.5-1.tar.gz";
|
|
|
|
name = "0.6.5-1.tar.gz";
|
|
|
|
sha256 = "b3bad43f16f53a1e3896af5d80a7f78879c189457f36ece8d8c26644708c0666";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake doxygen git ];
|
|
|
|
checkInputs = [ matio ];
|
2024-07-26 13:34:25 +00:00
|
|
|
propagatedBuildInputs = [ eigen python3Packages.numpy python3Packages.scipy simde ];
|
2024-05-24 14:00:52 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The Advanced Proximal Optimization Toolbox";
|
|
|
|
license = with lib.licenses; [ bsd2 ];
|
|
|
|
};
|
|
|
|
}
|