1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/foxy/ecl-io/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

27 lines
997 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-errors, ecl-license }:
buildRosPackage {
pname = "ros-foxy-ecl-io";
version = "1.1.0-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/foxy/ecl_io/1.1.0-1.tar.gz";
name = "1.1.0-1.tar.gz";
sha256 = "521ad2b9d3a64c4ea9cd8c7c689db9d07ad16b4acddb10a8f1e6b85ca3a16ccb";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ecl-build ];
propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Most implementations (windows, posix, ...) have slightly different api for
low level input-output functions. These are gathered here and re-represented
with a cross platform set of functions.'';
license = with lib.licenses; [ bsdOriginal ];
};
}