mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
25 lines
872 B
Nix
25 lines
872 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-rosbridge-msgs";
|
|
version = "1.2.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosbridge_suite-release/archive/release/foxy/rosbridge_msgs/1.2.0-1.tar.gz";
|
|
name = "1.2.0-1.tar.gz";
|
|
sha256 = "cba48aa69785cd70baf1df3448157d9c7d84349e7d037bd96112ea8e6cbf5b24";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ builtin-interfaces ];
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
nativeBuildInputs = [ ament-cmake-ros rosidl-default-generators ];
|
|
|
|
meta = {
|
|
description = ''Package containing message files'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|