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/eloquent/ecl-concepts/default.nix

28 lines
1.1 KiB
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-config, ecl-license, ecl-type-traits }:
buildRosPackage {
pname = "ros-eloquent-ecl-concepts";
version = "1.0.6-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_concepts/1.0.6-1.tar.gz";
name = "1.0.6-1.tar.gz";
sha256 = "34bf5886cf4e2b73434306414cf748b791c316dd11b7a47d02f14fa5f6b25202";
};
buildType = "ament_cmake";
buildInputs = [ ecl-build ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ecl-config ecl-license ecl-type-traits ];
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 ];
};
}