mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
895 B
Nix
26 lines
895 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, python3 }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-python-cmake-module";
|
|
version = "0.11.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/python_cmake_module-release/archive/release/rolling/python_cmake_module/0.11.0-2.tar.gz";
|
|
name = "0.11.0-2.tar.gz";
|
|
sha256 = "d2f10e96af12d2792a103b560acf6e2c41bb3dfe55d917d340e3ef184d3916fe";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ python3 ];
|
|
nativeBuildInputs = [ ament-cmake python3 ];
|
|
|
|
meta = {
|
|
description = ''Provide CMake module with extra functionality for Python.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|