1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/jazzy/scenario-execution-os/default.nix

25 lines
863 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, scenario-execution }:
buildRosPackage {
pname = "ros-jazzy-scenario-execution-os";
version = "1.2.0-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/scenario_execution-release/archive/release/jazzy/scenario_execution_os/1.2.0-4.tar.gz";
name = "1.2.0-4.tar.gz";
sha256 = "9f371fd2ba1283578e3eb5280cc12bccf903ae32bb23a969db4c74c98672eebf";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ scenario-execution ];
meta = {
description = "Scenario Execution library for OS interactions";
license = with lib.licenses; [ asl20 ];
};
}