2023-12-22 13:30:27 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-12-22 13:30:27 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ros-environment }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-etsi-its-denm-coding";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "2.3.0-r1";
|
2023-12-22 13:30:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/ros2-gbp/etsi_its_messages-release/archive/release/iron/etsi_its_denm_coding/2.3.0-1.tar.gz";
|
|
|
|
name = "2.3.0-1.tar.gz";
|
|
|
|
sha256 = "9562249ccdf0d400779354804a3a0ee7e97cbc8cea0162f7a173ec18f2fc2830";
|
2023-12-22 13:30:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ ros-environment ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "C++ compatible C source code for ETSI ITS DENMs generated from ASN.1 using asn1c";
|
2023-12-22 13:30:27 +00:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|