1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 06:31:44 +03:00
nix-ros-overlay/melodic/mongodb-store-msgs/default.nix

24 lines
831 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, actionlib-msgs, catkin, message-generation, message-runtime, actionlib }:
buildRosPackage {
pname = "ros-melodic-mongodb-store-msgs";
version = "0.5.0-r5";
src = fetchurl {
url = https://github.com/strands-project-releases/mongodb_store/archive/release/melodic/mongodb_store_msgs/0.5.0-5.tar.gz;
sha256 = "b5df2309a7ca62a19b97e73cf22e30ccf3e8b320ef40e8faf07f9ed144e77e90";
};
buildInputs = [ catkin message-generation actionlib-msgs actionlib ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ message-generation message-runtime actionlib-msgs actionlib ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The mongodb_store_msgs package'';
#license = lib.licenses.MIT;
};
}