mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-16 15:10:33 +03:00
26 lines
853 B
Nix
26 lines
853 B
Nix
![]() |
|
||
|
# Copyright 2021 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-galactic-python-cmake-module";
|
||
|
version = "0.8.1-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/python_cmake_module-release/archive/release/galactic/python_cmake_module/0.8.1-2.tar.gz";
|
||
|
name = "0.8.1-2.tar.gz";
|
||
|
sha256 = "1b214c917fbdcc190384457144d3ff27090ebc4d7579936902b610bc67dbf770";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ python3 ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Provide CMake module with extra functionality for Python.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|