1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/eloquent/ecl-mobile-robot/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, ecl-build, ecl-errors, ecl-formatters, ecl-geometry, ecl-license, ecl-linear-algebra, ecl-math }:
buildRosPackage {
pname = "ros-eloquent-ecl-mobile-robot";
version = "1.0.7-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_mobile_robot/1.0.7-1.tar.gz";
name = "1.0.7-1.tar.gz";
sha256 = "e18a42a1d3ee5f73ab2a6ab31a6ad7a406e17b418f8a4d0b8e191f574bee62cd";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ecl-build ecl-errors ecl-formatters ecl-geometry ecl-license ecl-linear-algebra ecl-math ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Contains transforms (e.g. differential drive inverse kinematics)
for the various types of mobile robot platforms.'';
license = with lib.licenses; [ bsdOriginal ];
};
}