mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.4 KiB
Nix
26 lines
1.4 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-command-line, ecl-concepts, ecl-containers, ecl-converters, ecl-core-apps, ecl-devices, ecl-eigen, ecl-exceptions, ecl-formatters, ecl-geometry, ecl-ipc, ecl-linear-algebra, ecl-math, ecl-mpl, ecl-sigslots, ecl-statistics, ecl-streams, ecl-threads, ecl-time, ecl-type-traits, ecl-utilities }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ecl-core";
|
|
version = "1.0.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/dashing/ecl_core/1.0.4-1.tar.gz";
|
|
name = "1.0.4-1.tar.gz";
|
|
sha256 = "5d8cde94549781c1ad857c7a5f8a0d2ee2d7cd21de781941058218cbd886b261";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ecl-command-line ecl-concepts ecl-containers ecl-converters ecl-core-apps ecl-devices ecl-eigen ecl-exceptions ecl-formatters ecl-geometry ecl-ipc ecl-linear-algebra ecl-math ecl-mpl ecl-sigslots ecl-statistics ecl-streams ecl-threads ecl-time ecl-type-traits ecl-utilities ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''A set of tools and interfaces extending the capabilities of c++ to
|
|
provide a lightweight, consistent interface with a focus for control
|
|
programming.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|