mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
25 lines
852 B
Nix
25 lines
852 B
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-cross-compile";
|
||
|
version = "0.2.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros-tooling/cross_compile-release/archive/release/eloquent/cross_compile/0.2.0-1.tar.gz";
|
||
|
name = "0.2.0-1.tar.gz";
|
||
|
sha256 = "118e5b938db507ab2c1f4aa866a7f826b185842a84331cf6439fddabbd8aa62a";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ python3Packages.docker ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A cross compilation tool for ROS 2 packages.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|