1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/jazzy/smclib/default.nix

31 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# 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-jazzy-smclib";
version = "4.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/bond_core-release/archive/release/jazzy/smclib/4.1.0-1.tar.gz";
name = "4.1.0-1.tar.gz";
sha256 = "8ada28c42a19c7ef20991fbe1fd74b458ec58e969141e9162c55264d363a49ab";
};
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 ];
};
}