1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/fastcdr/default.nix

24 lines
631 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake }:
buildRosPackage {
pname = "ros-foxy-fastcdr";
version = "1.0.13-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/fastcdr-release/archive/release/foxy/fastcdr/1.0.13-1.tar.gz";
name = "1.0.13-1.tar.gz";
sha256 = "7bfa6843defd50ed19c9c08ca7d13959b60be5aff12ffc40edd5b7e50daf411c";
};
buildType = "cmake";
nativeBuildInputs = [ cmake ];
meta = {
description = ''CDR serialization implementation.'';
license = with lib.licenses; [ asl20 ];
};
}