mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-license, ecl-type-traits, ament-lint-common, ament-lint-auto, ecl-build, ament-cmake-gtest }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-ecl-math";
|
||
|
version = "1.0.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_math/1.0.4-1.tar.gz";
|
||
|
name = "1.0.4-1.tar.gz";
|
||
|
sha256 = "74b34929a4afff2518c12714fe9d6b261cfb15d24273582b246608db15695bdc";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ecl-license ecl-type-traits ecl-build ];
|
||
|
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
|
||
|
propagatedBuildInputs = [ ecl-license ecl-type-traits ];
|
||
|
nativeBuildInputs = [ ament-cmake-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package provides simple support to cmath, filling in holes
|
||
|
or redefining in a c++ formulation where desirable.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|