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/distros/melodic/mongodb-log/default.nix

26 lines
883 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, mongodb-store, openssl, pythonPackages, rosgraph, roslib, rospy, rostopic, sensor-msgs, tf }:
buildRosPackage {
pname = "ros-melodic-mongodb-log";
version = "0.5.2-r1";
src = fetchurl {
url = "https://github.com/strands-project-releases/mongodb_store/archive/release/melodic/mongodb_log/0.5.2-1.tar.gz";
name = "0.5.2-1.tar.gz";
sha256 = "0482630592871557d4d9d9dff8bcd61a3c8801c840cc2477f51f4a3806a7453e";
};
buildType = "catkin";
buildInputs = [ openssl ];
propagatedBuildInputs = [ mongodb-store pythonPackages.pymongo rosgraph roslib rospy rostopic sensor-msgs tf ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The mongodb_log package'';
license = with lib.licenses; [ gpl2 ];
};
}