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/roscpp-core/default.nix

24 lines
813 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cpp-common, roscpp-serialization, roscpp-traits, rostime }:
buildRosPackage {
pname = "ros-melodic-roscpp-core";
version = "0.6.14-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/roscpp_core-release/archive/release/melodic/roscpp_core/0.6.14-1.tar.gz";
name = "0.6.14-1.tar.gz";
sha256 = "da4778ab1171d31224051712ac0ea9c0dd996179175faa56c143991aa8cdae1f";
};
buildType = "catkin";
propagatedBuildInputs = [ cpp-common roscpp-serialization roscpp-traits rostime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Underlying data libraries for roscpp messages.'';
license = with lib.licenses; [ bsdOriginal ];
};
}