1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/eloquent/ecl-io/default.nix

28 lines
1,023 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-license, ecl-errors, ecl-config, ecl-build }:
buildRosPackage {
pname = "ros-eloquent-ecl-io";
version = "1.0.3-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/eloquent/ecl_io/1.0.3-1.tar.gz";
name = "1.0.3-1.tar.gz";
sha256 = "4cd5d0a91f02f8d4b8f8e47603ea6dd6825c176c7e04f049bb5512ad9b6fe380";
};
buildType = "ament_cmake";
buildInputs = [ ecl-errors ecl-license ecl-config ecl-build ];
propagatedBuildInputs = [ ecl-errors ecl-license ecl-config ];
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 ];
};
}