2019-03-21 00:14:59 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-29 00:40:01 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, libpng, libusb1 }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rc-genicam-api";
|
2021-08-06 13:28:56 +00:00
|
|
|
version = "2.5.6-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-06 13:28:56 +00:00
|
|
|
url = "https://github.com/roboception-gbp/rc_genicam_api-release/archive/release/melodic/rc_genicam_api/2.5.6-1.tar.gz";
|
|
|
|
name = "2.5.6-1.tar.gz";
|
|
|
|
sha256 = "902f6cc0d8a886664bca7e2e0b9301991d986aa632945975df5d794a57c171a4";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "cmake";
|
2021-05-29 00:40:01 +00:00
|
|
|
propagatedBuildInputs = [ libpng libusb1 ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''GenICam/GigE Vision Convenience Layer.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
See LICENSE.md for licensing terms of the different parts.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|