1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/jazzy/etsi-its-vam-ts-coding/default.nix

25 lines
832 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ros-environment }:
buildRosPackage {
pname = "ros-jazzy-etsi-its-vam-ts-coding";
version = "3.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/etsi_its_messages-release/archive/release/jazzy/etsi_its_vam_ts_coding/3.2.0-1.tar.gz";
name = "3.2.0-1.tar.gz";
sha256 = "e772643dcfde54bf04a661aac01900cade8c5c3cb8dcabc6f11fcd76a30fd5a2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ ros-environment ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "C++ compatible C source code for ETSI ITS VAMs (TS) generated from ASN.1 using asn1c";
license = with lib.licenses; [ mit ];
};
}