1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Fri May 28 23:33:17 2021

This commit is contained in:
Superflore 2021-05-28 23:33:17 +00:00 committed by Ben Wolsieffer
parent 2753f77330
commit 74a6b9f676
838 changed files with 16928 additions and 1021 deletions

View file

@ -0,0 +1,23 @@
# Copyright 2021 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-galactic-ament-index-python";
version = "1.0.6-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_index-release/archive/release/galactic/ament_index_python/1.0.6-1.tar.gz";
name = "1.0.6-1.tar.gz";
sha256 = "09ca2a61311e12d97a84049c158b61db8b47030dd99a16b02e6dc2de4df031fd";
};
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 ];
};
}