1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/xacro/default.nix
2019-11-07 17:46:51 -05:00

27 lines
1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake, python3Packages, ament-index-python, ament-lint-auto }:
buildRosPackage {
pname = "ros-dashing-xacro";
version = "2.0.1-r2";
src = fetchurl {
url = "https://github.com/ros-gbp/xacro-release/archive/release/dashing/xacro/2.0.1-2.tar.gz";
name = "2.0.1-2.tar.gz";
sha256 = "c24475d924228bf75f7260fb8d3454dfa4af6add26078b04b61ccdc385049c31";
};
buildType = "ament_cmake";
buildInputs = [ ament-index-python python3Packages.pyyaml ];
checkInputs = [ ament-cmake-pytest ament-lint-auto ];
propagatedBuildInputs = [ ament-index-python python3Packages.pyyaml ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Xacro (XML Macros)
Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.'';
license = with lib.licenses; [ bsdOriginal ];
};
}