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/message-generation/default.nix

25 lines
856 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, gencpp, genlisp, gennodejs, catkin, geneus, genmsg, genpy }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-message-generation";
version = "0.4.0";
src = fetchurl {
url = "https://github.com/ros-gbp/message_generation-release/archive/release/melodic/message_generation/0.4.0-0.tar.gz";
name = "0.4.0-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "e868cdae2dcb54701e86484cb186fad8814bbd295db8a0224c4c14c3651d9303";
};
buildType = "catkin";
propagatedBuildInputs = [ gencpp genlisp gennodejs geneus genmsg genpy ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Package modeling the build-time dependencies for generating language bindings of messages.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}