1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/snowbot-operating-system/default.nix

27 lines
966 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-clang-format, ament-cmake-ros, geometry-msgs, pluginlib, rviz-common, rviz-rendering }:
buildRosPackage {
pname = "ros-rolling-snowbot-operating-system";
version = "0.1.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/snowbot_release/archive/release/rolling/snowbot_operating_system/0.1.2-3.tar.gz";
name = "0.1.2-3.tar.gz";
sha256 = "969b90a8591bf639e59e517434a0c33d791f96aaff8b4a43ebcf1a473f7783c1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-clang-format ];
propagatedBuildInputs = [ ament-cmake-ros geometry-msgs pluginlib rviz-common rviz-rendering ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The weather outside is frightful'';
license = with lib.licenses; [ bsdOriginal ];
};
}