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

regenerate ros-kinetic, Sat Apr 6 23:17:13 2019

This commit is contained in:
Ben Wolsieffer 2019-04-06 23:17:13 -04:00
parent e57f53f657
commit 06f93746ad
24 changed files with 571 additions and 6 deletions

View file

@ -0,0 +1,22 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
buildRosPackage {
pname = "ros-kinetic-gl-dependency";
version = "1.1.0";
src = fetchurl {
url = https://github.com/ros-gbp/gl_dependency-release/archive/release/kinetic/gl_dependency/1.1.0-0.tar.gz;
sha256 = "e253a8266d014f00b961a089835ba7e13748096f2e2ff5b056ea094b2d80835e";
};
propagatedBuildInputs = [ pythonPackages.pyqt5 ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This encapsulates the GL dependency for a specific ROS distribution and its Qt version'';
#license = lib.licenses.BSD;
};
}