1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/kinetic/dataspeed-ulc/default.nix

23 lines
740 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, dataspeed-ulc-can, dataspeed-ulc-msgs }:
buildRosPackage {
pname = "ros-kinetic-dataspeed-ulc";
version = "0.0.3";
src = fetchurl {
url = https://github.com/DataspeedInc-release/dataspeed_ulc_ros-release/archive/release/kinetic/dataspeed_ulc/0.0.3-0.tar.gz;
sha256 = "7e552aacf7439969d159d873ae7f69a4f0f1b8290ff3f8284f633cb19598a6d4";
};
propagatedBuildInputs = [ dataspeed-ulc-can dataspeed-ulc-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''CAN interface to the Universal Lat/Lon Controller (ULC) firmware'';
#license = lib.licenses.BSD;
};
}