mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python, ament-lint-auto, ament-lint-common, python3Packages, rosidl-adapter, rosidl-parser }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-rosidl-cmake";
|
|
version = "1.3.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/foxy/rosidl_cmake/1.3.1-1.tar.gz";
|
|
name = "1.3.1-1.tar.gz";
|
|
sha256 = "9a1b95299b93fa18c295051f530f2debe5afe0f1533300ca1e6881ddf185800d";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-python ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ ament-cmake python3Packages.empy rosidl-adapter rosidl-parser ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python python3Packages.empy ];
|
|
|
|
meta = {
|
|
description = ''The CMake functionality to invoke code generation for ROS interface files.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|