mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
813 B
Nix
24 lines
813 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, nav-msgs, roscpp, sensor-msgs, tf }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-mobile-robot-simulator";
|
|
version = "1.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/nobleo/mobile_robot_simulator-release/archive/release/melodic/mobile_robot_simulator/1.0.1-1.tar.gz";
|
|
name = "1.0.1-1.tar.gz";
|
|
sha256 = "dfb06a08fdc913cfe76d014a149cfb5da9770cac4372ff88baa08e10ecbcac6f";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ geometry-msgs nav-msgs roscpp sensor-msgs tf ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The mobile_robot_simulator package'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|