mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
1,001 B
Nix
26 lines
1,001 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, unique-identifier-msgs, ament-cmake, rosidl-default-generators, std-msgs, rosidl-default-runtime, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-geographic-msgs";
|
||
|
version = "1.0.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros-geographic-info/geographic_info-release/archive/release/dashing/geographic_msgs/1.0.1-1.tar.gz";
|
||
|
name = "1.0.1-1.tar.gz";
|
||
|
sha256 = "8b92cdc3bc12992f94de86638a745fb42c41471b5e99d27c766765343b320d65";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ std-msgs rosidl-default-generators unique-identifier-msgs geometry-msgs ];
|
||
|
propagatedBuildInputs = [ std-msgs rosidl-default-runtime unique-identifier-msgs geometry-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''ROS messages for Geographic Information Systems.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|