1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/nav2-common/default.nix
2019-11-07 17:46:51 -05:00

25 lines
821 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-python, ament-cmake-core }:
buildRosPackage {
pname = "ros-dashing-nav2-common";
version = "0.2.6-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/nav2_common/0.2.6-1.tar.gz";
name = "0.2.6-1.tar.gz";
sha256 = "7e5ed3e429d4495fd5241b1d8395bd95c1740ac38332f82d94c43182a3bacb98";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-python ];
propagatedBuildInputs = [ ament-cmake-core ];
nativeBuildInputs = [ ament-cmake-core ];
meta = {
description = ''Common support functionality used throughout the navigation 2 stack'';
license = with lib.licenses; [ asl20 ];
};
}