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/crystal/std-srvs/default.nix
2019-09-05 22:48:11 -04:00

24 lines
841 B
Nix

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