mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
716 B
Nix
23 lines
716 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, social-navigation-layers, catkin, range-sensor-layer }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-navigation-layers";
|
||
|
version = "0.3.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/wu-robotics/navigation_layers_release/archive/release/kinetic/navigation_layers/0.3.1-1.tar.gz;
|
||
|
sha256 = "a341fdcc91749f5baaf232ad0bb971cf038186b036b113d4615b3a9ff97401be";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ social-navigation-layers range-sensor-layer ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Extra navigation layers.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|