mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 13:40:32 +03:00
29 lines
1.3 KiB
Nix
29 lines
1.3 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-config, ecl-errors, ecl-exceptions, ecl-license, ecl-threads, ecl-time, ecl-time-lite }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-ecl-ipc";
|
|
version = "1.0.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_ipc/1.0.7-1.tar.gz";
|
|
name = "1.0.7-1.tar.gz";
|
|
sha256 = "18a1e36719d0d52081339eedb771ee3af4d933ef3052f9116c71865ece20717c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ ecl-build ecl-config ecl-errors ecl-exceptions ecl-license ecl-threads ecl-time ecl-time-lite ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Interprocess mechanisms vary greatly across platforms - sysv, posix, win32, there
|
|
are more than a few. This package provides an infrastructure to allow for developing
|
|
cross platform c++ wrappers around the lower level c api's that handle these
|
|
mechanisms. These make it not only easier to utilise such mechanisms, but allow it
|
|
to be done consistently across platforms.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|