mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
Move everything in rosPackages to its own directory.
This commit is contained in:
parent
fe0a4494ef
commit
444edcec26
5725 changed files with 3 additions and 3 deletions
24
distros/eloquent/examples-tf2-py/default.nix
Normal file
24
distros/eloquent/examples-tf2-py/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
# Copyright 2020 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch-ros, pythonPackages, tf2-ros }:
|
||||
buildRosPackage {
|
||||
pname = "ros-eloquent-examples-tf2-py";
|
||||
version = "0.12.4-r1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/eloquent/examples_tf2_py/0.12.4-1.tar.gz";
|
||||
name = "0.12.4-1.tar.gz";
|
||||
sha256 = "49be6059b15823372fe7a82a4aea7613cb65ec627c5c58df2a124d1bd2d028d7";
|
||||
};
|
||||
|
||||
buildType = "ament_python";
|
||||
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||||
propagatedBuildInputs = [ launch-ros tf2-ros ];
|
||||
|
||||
meta = {
|
||||
description = ''Has examples of using the tf2 Python API.'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue