mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
955 B
Nix
25 lines
955 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs, unique-identifier-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 = [ rosidl-default-generators ];
|
|
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime std-msgs unique-identifier-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''ROS messages for Geographic Information Systems.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|