mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
831 B
Nix
26 lines
831 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ros-environment }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-iron-etsi-its-denm-coding";
|
||
|
version = "1.0.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ika-rwth-aachen/etsi_its_messages-release/archive/release/iron/etsi_its_denm_coding/1.0.0-2.tar.gz";
|
||
|
name = "1.0.0-2.tar.gz";
|
||
|
sha256 = "2a2ce06be97e8de45dd9837bcaa4a7676223494814529a5a06b6dde98a44525e";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
propagatedBuildInputs = [ ros-environment ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''C++ compatible C source code for ETSI ITS DENMs generated from ASN.1 using asn1c'';
|
||
|
license = with lib.licenses; [ mit ];
|
||
|
};
|
||
|
}
|