2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python, ament-lint-auto, ament-lint-common }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-smclib";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "4.0.0-r4";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/bond_core-release/archive/release/rolling/smclib/4.0.0-4.tar.gz";
|
|
|
|
name = "4.0.0-4.tar.gz";
|
|
|
|
sha256 = "17507ae11bc45b4f6b7b7b7b68910f4deb04821b0ffbb4f26018aa6076aac6fc";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The State Machine Compiler (SMC) from http://smc.sourceforge.net/
|
|
|
|
converts a language-independent description of a state machine
|
|
|
|
into the source code to support that state machine.
|
|
|
|
|
|
|
|
This package contains the libraries that a compiled state machine
|
|
|
|
depends on, but it does not contain the compiler itself.'';
|
|
|
|
license = with lib.licenses; [ mpl11 ];
|
|
|
|
};
|
|
|
|
}
|