mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
695 B
Nix
23 lines
695 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, message-generation, catkin, message-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-std-srvs";
|
|
version = "1.11.2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/ros_comm_msgs-release/archive/release/kinetic/std_srvs/1.11.2-0.tar.gz;
|
|
sha256 = "223955e2e05e6d86f5c1f57d00c55e4a2f6ac3f9060f727ee512b2602c253184";
|
|
};
|
|
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ message-runtime ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Common service definitions.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|