1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/std-srvs/default.nix

25 lines
768 B
Nix

# Copyright 2021 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";
name = "1.11.2-0.tar.gz";
sha256 = "ecc565aebf13d5afbfaf42a1fb8a31de29af19331ca76239ced87c10f14fc363";
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Common service definitions.'';
license = with lib.licenses; [ bsdOriginal ];
};
}