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

26 lines
895 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.1-r2";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/strands-project-releases/mongodb_store/archive/release/melodic/mongodb_store_msgs/0.5.1-2.tar.gz";
name = "0.5.1-2.tar.gz";
sha256 = "075b062cafd0ac8994ea0c176b25a8099b419edc548f94e26ef1b5162a2962bf";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
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 = with lib.licenses; [ mit ];
2019-03-21 00:14:59 -04:00
};
}