1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/melodic/imagesift/default.nix
2019-04-06 22:15:06 -04:00

26 lines
1.2 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake-modules, libsiftfast, image-transport, sensor-msgs, cv-bridge, posedetection-msgs, jsk-topic-tools, catkin, roscpp, rostest, jsk-recognition-utils, nodelet }:
buildRosPackage {
pname = "ros-melodic-imagesift";
version = "1.2.10";
src = fetchurl {
url = https://github.com/tork-a/jsk_recognition-release/archive/release/melodic/imagesift/1.2.10-0.tar.gz;
sha256 = "322d64597608e08314224ee31b4fd32f1d3ab7fe3b6fea7cbff20131e411ffc5";
};
buildInputs = [ cmake-modules libsiftfast image-transport sensor-msgs cv-bridge jsk-topic-tools posedetection-msgs roscpp jsk-recognition-utils nodelet ];
checkInputs = [ rostest ];
propagatedBuildInputs = [ libsiftfast image-transport sensor-msgs cv-bridge jsk-topic-tools posedetection-msgs roscpp jsk-recognition-utils nodelet ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''For every image, computes its sift features and send a new message with the image, its intrinsic parameters, and the features.
Parameters include:
display - shows the image on the local computer'';
#license = lib.licenses.LGPL;
};
}