mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
26 lines
935 B
Nix
26 lines
935 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-clang-format, ament-cmake-flake8, ament-cmake-pytest, maliput, python3, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-maliput-py";
|
|
version = "0.1.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/maliput_py-release/archive/release/foxy/maliput_py/0.1.5-1.tar.gz";
|
|
name = "0.1.5-1.tar.gz";
|
|
sha256 = "2cacc86e9d7e45046e2e8efd4b49d8ad38f5a151da229b131f1dd99b2eee56ea";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake python3 ];
|
|
checkInputs = [ ament-cmake-clang-format ament-cmake-flake8 ament-cmake-pytest ];
|
|
propagatedBuildInputs = [ maliput pythonPackages.pybind11 ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Maliput bindings'';
|
|
license = with lib.licenses; [ "BSD-Clause-3" ];
|
|
};
|
|
}
|