regenerate all distros, Thu Jun 9 18:50:37 2022

This commit is contained in:
Ben Wolsieffer 2022-06-09 18:50:37 -04:00
parent aa08119940
commit 1ebd89fabb
1056 changed files with 24850 additions and 671 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core }:
buildRosPackage {
pname = "ros-humble-ament-cmake-python";
version = "1.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_cmake-release/archive/release/humble/ament_cmake_python/1.3.2-1.tar.gz";
name = "1.3.2-1.tar.gz";
sha256 = "cfbdd14d86975cb4908312649c649545e0e85b77edeb001a9361407134f7bb97";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-core ];
nativeBuildInputs = [ ament-cmake-core ];
meta = {
description = ''The ability to use Python in the ament buildsystem in CMake.'';
license = with lib.licenses; [ asl20 ];
};
}