mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1,004 B
Nix
26 lines
1,004 B
Nix
|
|
# Copyright 2023 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-concepts, ecl-license, ecl-mpl }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-ecl-utilities";
|
|
version = "1.2.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/foxy/ecl_utilities/1.2.0-1.tar.gz";
|
|
name = "1.2.0-1.tar.gz";
|
|
sha256 = "a01de5b9b42675e1f3b88b7cbdbe0a4a42ac4e6db07dd18a1a6d010af563d424";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-ros ecl-build ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ ecl-concepts ecl-license ecl-mpl ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Includes various supporting tools and utilities for c++ programming.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|