1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/eloquent/ecl-math/default.nix

27 lines
1 KiB
Nix

# 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-license, ecl-type-traits }:
buildRosPackage {
pname = "ros-eloquent-ecl-math";
version = "1.0.6-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_math/1.0.6-1.tar.gz";
name = "1.0.6-1.tar.gz";
sha256 = "f163c33e2aa213310e2666f7f4741c05d62b47fbdbb798685f2c8b7d2b84c7c5";
};
buildType = "ament_cmake";
buildInputs = [ ecl-build ];
checkInputs = [ ament-cmake-gtest ament-lint-auto 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 ];
};
}