mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
1 KiB
Nix
27 lines
1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake-gtest, ecl-build, ecl-license, ecl-type-traits, ament-cmake-ros, ament-lint-auto }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ecl-math";
|
|
version = "1.0.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/dashing/ecl_math/1.0.4-1.tar.gz";
|
|
name = "1.0.4-1.tar.gz";
|
|
sha256 = "a4cc87400dfcc2abced69b9af41fd490d9d1234c9298bcafcdaf3352d081008d";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ecl-license ecl-type-traits ecl-build ];
|
|
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
|
|
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 ];
|
|
};
|
|
}
|