1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/eloquent/plansys2-pddl-parser/default.nix

33 lines
1.2 KiB
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp }:
buildRosPackage {
pname = "ros-eloquent-plansys2-pddl-parser";
version = "0.0.6-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_pddl_parser/0.0.6-1.tar.gz";
name = "0.0.6-1.tar.gz";
sha256 = "911de9ac7346c62a74dcdf9a61e601fa41c1d28d5bdb8848666e44768daf398a";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package contains a library for parsing PDDL domains and problems.
This package derives from the work of Anders Jonsson, contained in https://github.com/wisdompoet/universal-pddl-parser.git
with many modifications by Francisco Martin:
* ROS2 packaging
* Source code structure refactor
* CMakeLists.txt for cmake compilation
* Reading from String instead of files
* Licensing'';
license = with lib.licenses; [ asl20 ];
};
}