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

23 lines
1,009 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake-modules, omniorb, catkin, blas, pkg-config, rostest, liblapack, message-generation, openrtm-aist-python, openrtm-aist, message-runtime, std-msgs }:
buildRosPackage {
pname = "ros-kinetic-rtmbuild";
version = "1.4.2";
src = fetchurl {
url = https://github.com/tork-a/rtmros_common-release/archive/release/kinetic/rtmbuild/1.4.2-0.tar.gz;
sha256 = "f1b6875c8899df1fa9d07b2ebb2c9ed25bf88e76b8bb38840d6dddb41f4342ef";
};
buildInputs = [ rostest message-generation cmake-modules openrtm-aist openrtm-aist-python std-msgs omniorb pkg-config ];
propagatedBuildInputs = [ cmake-modules omniorb blas pkg-config liblapack rostest message-generation openrtm-aist-python openrtm-aist message-runtime std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Build scripts for OpenRTM and OpenHRP'';
#license = lib.licenses.BSD;
};
}