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
26
distros/eloquent/rclpy/default.nix
Normal file
26
distros/eloquent/rclpy/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
# Copyright 2020 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-index-python, ament-lint-auto, ament-lint-common, builtin-interfaces, python-cmake-module, pythonPackages, rcl, rcl-action, rcl-interfaces, rcl-yaml-param-parser, rcutils, rmw-implementation, rmw-implementation-cmake, rosgraph-msgs, rosidl-generator-py, test-msgs, unique-identifier-msgs }:
|
||||
buildRosPackage {
|
||||
pname = "ros-eloquent-rclpy";
|
||||
version = "0.8.3-r1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ros2-gbp/rclpy-release/archive/release/eloquent/rclpy/0.8.3-1.tar.gz";
|
||||
name = "0.8.3-1.tar.gz";
|
||||
sha256 = "5fb74c29e3b4d252691b63069099b3a0c6802b0f5dc1ebaeee9ff09c9b4bb551";
|
||||
};
|
||||
|
||||
buildType = "ament_cmake";
|
||||
buildInputs = [ rcutils rmw-implementation-cmake ];
|
||||
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common pythonPackages.pytest rosidl-generator-py test-msgs ];
|
||||
propagatedBuildInputs = [ ament-index-python builtin-interfaces rcl rcl-action rcl-interfaces rcl-yaml-param-parser rmw-implementation rosgraph-msgs unique-identifier-msgs ];
|
||||
nativeBuildInputs = [ ament-cmake python-cmake-module ];
|
||||
|
||||
meta = {
|
||||
description = ''Package containing the Python client.'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue