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