1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/roscpp-core/default.nix

25 lines
813 B
Nix
Raw Normal View History

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