mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake-gtest, ecl-build, ecl-license, ecl-type-traits, ament-cmake-ros, ament-lint-auto, ecl-config }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ecl-concepts";
|
|
version = "1.0.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/dashing/ecl_concepts/1.0.4-1.tar.gz";
|
|
name = "1.0.4-1.tar.gz";
|
|
sha256 = "46f3f111c9238cf05042cd6c092414f63a648090e474314965b0d75c799918c4";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ecl-license ecl-type-traits ecl-config ecl-build ];
|
|
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
|
|
propagatedBuildInputs = [ ecl-license ecl-type-traits ecl-config ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Introduces a compile time concept checking mechanism that can be used
|
|
most commonly to check for required functionality when passing
|
|
template arguments.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|