2020-09-13 01:20:42 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-09-13 01:20:42 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-contracts-lite-vendor";
|
2021-03-06 02:47:22 +00:00
|
|
|
version = "0.5.0-r1";
|
2020-09-13 01:20:42 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-06 02:47:22 +00:00
|
|
|
url = "https://github.com/ros-safety/contracts_lite_vendor-release/archive/release/foxy/contracts_lite_vendor/0.5.0-1.tar.gz";
|
|
|
|
name = "0.5.0-1.tar.gz";
|
|
|
|
sha256 = "14ea41bbb384648b7195fb8adc8c2bc7e4883bc6ea9622f462790632c1e87e22";
|
2020-09-13 01:20:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS 2 wrapper for the Contracts Lite project.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|