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/melodic/cob-common/default.nix

25 lines
994 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, raw-description, catkin, cob-srvs, cob-description, cob-actions, cob-msgs }:
buildRosPackage {
pname = "ros-melodic-cob-common";
version = "0.7.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ipa320/cob_common-release/archive/release/melodic/cob_common/0.7.0-1.tar.gz";
name = "0.7.0-1.tar.gz";
sha256 = "8d43687e403871afba8178f7b1382fb575114e835ca1c70f7fa426c41852f749";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ raw-description cob-srvs cob-description cob-actions cob-msgs ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''The cob_common stack hosts common packages that are used within the Care-O-bot repository. E.g. utility packages or common message and service definitions etc. Also the urdf desciption of the robot is located in this stack.'';
license = with lib.licenses; [ asl20 ];
2019-03-21 00:14:59 -04:00
};
}