1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 22:28:39 +03:00
nix-ros-overlay/dashing/rmw-implementation-cmake/default.nix
2019-09-06 12:16:22 -04:00

25 lines
858 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-auto, ament-cmake, ament-lint-common }:
buildRosPackage {
pname = "ros-dashing-rmw-implementation-cmake";
version = "0.7.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw-release/archive/release/dashing/rmw_implementation_cmake/0.7.2-1.tar.gz";
name = "0.7.2-1.tar.gz";
sha256 = "fac832b5c80357d3eeb1b573b5ac2f0531bf13874a03d10ec780628f294fab13";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''CMake functions which can discover and enumerate available implementations.'';
license = with lib.licenses; [ asl20 ];
};
}