2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-08 14:09:31 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, elfutils }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-backward-ros";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "1.0.7-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/ros2-gbp/backward_ros-release/archive/release/humble/backward_ros/1.0.7-1.tar.gz";
|
|
|
|
name = "1.0.7-1.tar.gz";
|
|
|
|
sha256 = "1689006a5358b7121e093bfeac5b8e933be4b6029e599cf0bb8013fdc57e75e5";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ elfutils ];
|
2024-07-26 13:34:25 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The backward_ros package is a ros wrapper of backward-cpp from https://github.com/bombela/backward-cpp";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|