mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2019 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.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_mobile_robot/1.0.4-1.tar.gz";
|
|
name = "1.0.4-1.tar.gz";
|
|
sha256 = "e12835c67f100c89fa1a19d34dd61bc33b4171d6ad3ff66c0f366c430bbdcf4d";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|