2020-11-13 13:08:14 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-11-13 13:08:14 +00: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-foxy-smclib";
|
|
|
|
version = "2.0.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/bond_core-release/archive/release/foxy/smclib/2.0.0-1.tar.gz";
|
|
|
|
name = "2.0.0-1.tar.gz";
|
|
|
|
sha256 = "72315b444eeba5b8f9bb994e46639aac5999595a3791c32b6081560f73b4d227";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|