1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-26 16:45:32 +03:00

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,23 @@
# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
buildRosPackage {
pname = "ros-humble-ament-index-python";
version = "1.4.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/humble/ament_index_python/1.4.0-2.tar.gz";
name = "1.4.0-2.tar.gz";
sha256 = "90ec6fd306f83cf1955ff016f0c1eb02d81f43697280b87f93f748a748bcb825";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
meta = {
description = ''Python API to access the ament resource index.'';
license = with lib.licenses; [ asl20 ];
};
}