2019-11-07 17:17:35 -05:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-11-07 17:17:35 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages, pythonPackages }:
|
2019-11-07 17:17:35 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-cross-compile";
|
2020-01-10 12:36:13 +00:00
|
|
|
version = "0.2.0-r1";
|
2019-11-07 17:17:35 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-10 12:36:13 +00:00
|
|
|
url = "https://github.com/ros-tooling/cross_compile-release/archive/release/dashing/cross_compile/0.2.0-1.tar.gz";
|
|
|
|
name = "0.2.0-1.tar.gz";
|
|
|
|
sha256 = "f66e276fa572d67631b97164b505fee50c79e407637e9046519b41d0e522b098";
|
2019-11-07 17:17:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
2019-11-07 17:17:35 -05:00
|
|
|
propagatedBuildInputs = [ python3Packages.docker ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A cross compilation tool for ROS 2 packages.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|