1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/gmplot-ros/default.nix

23 lines
642 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, gmplot, catkin, gmplot-msgs }:
buildRosPackage {
pname = "ros-kinetic-gmplot-ros";
version = "1.0.1";
src = fetchurl {
url = https://github.com/robustify/gmplot_ros-release/archive/release/kinetic/gmplot_ros/1.0.1-0.tar.gz;
sha256 = "0114f91d70b20e5dc6d32a0aa3bb9de3e4c1b9bddefbbc601afca64d1e14e5ce";
};
propagatedBuildInputs = [ gmplot gmplot-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Metapackage for gmplot_ros'';
#license = lib.licenses.BSD;
};
}