mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
996 B
Nix
26 lines
996 B
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-concepts, ecl-license, ecl-mpl }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-ecl-utilities";
|
|
version = "1.0.7-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_utilities/1.0.7-1.tar.gz";
|
|
name = "1.0.7-1.tar.gz";
|
|
sha256 = "c0f106439d26e30b158f0c935669f907acec1671644826825eae549a5adf7894";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ 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 ];
|
|
};
|
|
}
|