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/humble/std-srvs/default.nix
2022-06-11 13:21:09 -04:00

25 lines
873 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-humble-std-srvs";
version = "4.2.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/humble/std_srvs/4.2.2-1.tar.gz";
name = "4.2.2-1.tar.gz";
sha256 = "91a48ad9a453e4d35c6815d92d4415dfee237bec5dfe97a7e357eeee1e35ea23";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''A package containing some standard service definitions.'';
license = with lib.licenses; [ asl20 ];
};
}