mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
781 B
Nix
24 lines
781 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, roslint, catkin, message-generation, message-runtime, std-msgs, rosunit }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-network-interface";
|
||
|
version = "2.1.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/astuff/network_interface-release/archive/release/melodic/network_interface/2.1.0-0.tar.gz;
|
||
|
sha256 = "5998b4fc5c5a96474d6a2ab83d3c55f7f5e847af5f909f00176deda4f6612ccf";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ rosunit ];
|
||
|
propagatedBuildInputs = [ std-msgs message-runtime ];
|
||
|
nativeBuildInputs = [ std-msgs catkin message-generation roslint ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Network interfaces and messages.'';
|
||
|
#license = lib.licenses.MIT;
|
||
|
};
|
||
|
}
|