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/distros/melodic/nav-grid/default.nix

25 lines
746 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, roslint, rosunit }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-nav-grid";
version = "0.3.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/DLu/robot_navigation-release/archive/release/melodic/nav_grid/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "3d2282bb68f6833b47ff28b642b1948bda0864816a4911694f5ff46ec3493dce";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
checkInputs = [ roslint rosunit ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''A templatized interface for overlaying a two dimensional grid on the world.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}