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/dashing/ros-base/default.nix

25 lines
946 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, kdl-parser, ament-cmake, tf2-geometry-msgs, ros-core, tf2-kdl, tf2-ros, tf2, urdf, robot-state-publisher, tf2-eigen }:
buildRosPackage {
pname = "ros-dashing-ros-base";
version = "0.7.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/variants-release/archive/release/dashing/ros_base/0.7.2-1.tar.gz";
name = "0.7.2-1.tar.gz";
sha256 = "ca4226763e8db5a53ade8eb691ba401c5695e9014b6de3f3db0d762408f0e2d4";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ kdl-parser tf2-geometry-msgs ros-core tf2-kdl tf2-ros tf2 urdf robot-state-publisher tf2-eigen ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A package which extends 'ros_core' and includes other basic functionalities like tf2 and urdf.'';
license = with lib.licenses; [ asl20 ];
};
}