2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-03-22 13:05:17 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, libpng, libusb1, ncurses }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-rc-genicam-api";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "2.6.5-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/roboception-gbp/rc_genicam_api-release/archive/release/noetic/rc_genicam_api/2.6.5-1.tar.gz";
|
|
|
|
name = "2.6.5-1.tar.gz";
|
|
|
|
sha256 = "16837d9781d1dde8c502d9185d55f243dc95dcf174c2bbc9b523bff93b98aaec";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ cmake ];
|
2024-03-22 13:05:17 +00:00
|
|
|
propagatedBuildInputs = [ libpng libusb1 ncurses ];
|
2020-05-23 15:15:06 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "GenICam/GigE Vision Convenience Layer.
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
This package combines the Roboception convenience layer for images with the
|
|
|
|
GenICam reference implementation and a GigE Vision transport layer. It is a
|
|
|
|
self contained package that permits configuration and image streaming of
|
|
|
|
GenICam / GigE Vision 2.0 compatible cameras like the Roboception rc_visard.
|
|
|
|
|
|
|
|
This package also provides some tools that can be called from the command line
|
|
|
|
for discovering cameras, changing their configuration and streaming images.
|
|
|
|
Although the tools are meant to be useful when working in a shell or in a
|
|
|
|
script, their main purpose is to serve as example on how to use the API for
|
|
|
|
reading and setting parameters, streaming and synchronizing images.
|
|
|
|
|
2024-03-23 14:09:26 +00:00
|
|
|
See LICENSE.md for licensing terms of the different parts.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|