mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
831 B
Nix
23 lines
831 B
Nix
|
|
# 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-kinetic-mongodb-store-msgs";
|
|
version = "0.4.4-r2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/strands-project-releases/mongodb_store/archive/release/kinetic/mongodb_store_msgs/0.4.4-2.tar.gz;
|
|
sha256 = "eb3065137064881113c2dae3a702c174d6a434b4059f2f191de8779c4473b536";
|
|
};
|
|
|
|
buildInputs = [ catkin message-generation actionlib-msgs actionlib ];
|
|
propagatedBuildInputs = [ message-generation message-runtime actionlib-msgs actionlib ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The mongodb_store_msgs package'';
|
|
#license = lib.licenses.MIT;
|
|
};
|
|
}
|