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

26 lines
848 B
Nix
Raw Normal View History

# 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-dashing-python-cmake-module";
version = "0.7.11-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl_python-release/archive/release/dashing/python_cmake_module/0.7.11-1.tar.gz";
name = "0.7.11-1.tar.gz";
sha256 = "a3b73ff9fed76786cea087c8c2ad1f26b4bd69c84c10d12ecc7e03d62f444bcf";
};
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 ];
};
}