mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 22:50:18 +03:00
25 lines
903 B
Nix
25 lines
903 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, builtin-interfaces, geometry-msgs, python-cmake-module, rclpy, tf2 }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-tf2-py";
|
|
version = "0.12.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/eloquent/tf2_py/0.12.4-1.tar.gz";
|
|
name = "0.12.4-1.tar.gz";
|
|
sha256 = "1a0de98a0300bbf8f89806a7aece41c15938d9d704c62747360a4815e20a0518";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ];
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy tf2 ];
|
|
nativeBuildInputs = [ ament-cmake python-cmake-module ];
|
|
|
|
meta = {
|
|
description = ''The tf2_py package'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|