mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
26 lines
885 B
Nix
26 lines
885 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-urg-node-msgs";
|
|
version = "1.0.1-r6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/urg_node_msgs-release/archive/release/humble/urg_node_msgs/1.0.1-6.tar.gz";
|
|
name = "1.0.1-6.tar.gz";
|
|
sha256 = "6f093d4f66a1f40d99280b6417ccc07045227e84ae8e85e45a8d3b29339d624f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-common ];
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-generators std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "urg_node_msgs";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|