mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
913 B
Nix
24 lines
913 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, catkin, genmsg, mesh-msgs, message-generation, message-runtime, roscpp, sensor-msgs, std-msgs, tf }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-label-manager";
|
|
version = "1.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/uos-gbp/mesh-tools/archive/release/melodic/label_manager/1.0.1-1.tar.gz";
|
|
name = "1.0.1-1.tar.gz";
|
|
sha256 = "774bbccc5440c62f0a98678e812e4dc07ec909d0d5345cb4d56f867ca2d985b7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs genmsg mesh-msgs message-generation message-runtime roscpp sensor-msgs std-msgs tf ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Serving and persisting label information'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|