1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/melodic/mk/default.nix
2019-03-21 00:14:59 -04:00

24 lines
884 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rospack, rosbuild, catkin }:
buildRosPackage {
pname = "ros-melodic-mk";
version = "1.14.6";
src = fetchurl {
url = https://github.com/ros-gbp/ros-release/archive/release/melodic/mk/1.14.6-0.tar.gz;
sha256 = "1382c3d63ce096921a1c157c850962bb220f806dc2fa9ca88c45f3d0017bd5e2";
};
propagatedBuildInputs = [ rospack rosbuild ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A collection of .mk include files for building ROS architectural elements.
Most package authors should use cmake .mk, which calls CMake for the build of the package.
The other files in this package are intended for use in exotic situations that mostly arise when importing 3rdparty code.'';
#license = lib.licenses.BSD;
};
}