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, Tue Apr 9 23:10:23 2019

This commit is contained in:
Ben Wolsieffer 2019-04-09 23:10:23 -04:00
parent 4fb3615d02
commit cd58b1bedd
12 changed files with 51 additions and 52 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-webkit-dependency";
version = "1.1.0";
src = fetchurl {
url = https://github.com/ros-gbp/webkit_dependency-release/archive/release/kinetic/webkit_dependency/1.1.0-0.tar.gz;
sha256 = "5e90166cb40c736e14bcd5e97c99c90a038c787474e2678c5ea390d7e883c451";
};
propagatedBuildInputs = [ pythonPackages.pyqt5_with_qtwebkit ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This encapsulates the WebKit dependency for a specific ROS distribution and its Qt version'';
#license = lib.licenses.BSD;
};
}