mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
785 B
Nix
24 lines
785 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, range-sensor-layer, social-navigation-layers }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-navigation-layers";
|
|
version = "0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/wu-robotics/navigation_layers_release/archive/release/melodic/navigation_layers/0.5.0-0.tar.gz";
|
|
name = "0.5.0-0.tar.gz";
|
|
sha256 = "e51022d7bd6b2c049f58961b026a30460ce71607b1905c283e7b2626b653f359";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ range-sensor-layer social-navigation-layers ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Extra navigation layers.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|