1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-24 15:59:54 +03:00

regenerate all distros, Mon Dec 9 05:16:45 2019

This commit is contained in:
Superflore 2019-12-09 05:16:46 +00:00 committed by Ben Wolsieffer
parent 166ab6841e
commit 1cdfda3fb7
4992 changed files with 27436 additions and 12893 deletions

View file

@ -0,0 +1,25 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3, ament-lint-common, ament-cmake, ament-lint-auto }:
buildRosPackage {
pname = "ros-eloquent-python-cmake-module";
version = "0.8.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/python_cmake_module-release/archive/release/eloquent/python_cmake_module/0.8.0-2.tar.gz";
name = "0.8.0-2.tar.gz";
sha256 = "2fa84d2e24ea929b3efcfe3c17d1d91df28c1f2b145fe6f6b2ae9fab882d5ec6";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ament-lint-auto ];
propagatedBuildInputs = [ python3 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Provide CMake module with extra functionality for Python.'';
license = with lib.licenses; [ asl20 ];
};
}