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/kinetic/kdl-typekit/default.nix
2019-04-06 20:59:50 -04:00

23 lines
711 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, ocl, orocos-kdl, rtt }:
buildRosPackage {
pname = "ros-kinetic-kdl-typekit";
version = "2.9.1";
src = fetchurl {
url = https://github.com/orocos-gbp/rtt_geometry-release/archive/release/kinetic/kdl_typekit/2.9.1-0.tar.gz;
sha256 = "1e4b5606f26d32ba7f0cb68caaa986117e21cd9aaa0e5a090ab415a530d6fbbc";
};
buildInputs = [ ocl orocos-kdl rtt ];
propagatedBuildInputs = [ ocl orocos-kdl rtt ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains the KDL RTT bindings'';
#license = lib.licenses.LGPL / BSD;
};
}