2019-04-09 23:25:34 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-09 23:25:34 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-webkit-dependency";
|
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/webkit_dependency-release/archive/release/melodic/webkit_dependency/1.1.0-0.tar.gz";
|
|
|
|
name = "1.1.0-0.tar.gz";
|
2019-04-09 23:25:34 -04:00
|
|
|
sha256 = "a187ab79ea2545b2dec0f48d74af9b4f3875f73ac649c8527e54e9ea6cda0e29";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-09 23:25:34 -04:00
|
|
|
propagatedBuildInputs = [ pythonPackages.pyqt5_with_qtwebkit ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This encapsulates the WebKit dependency for a specific ROS distribution and its Qt version'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-04-09 23:25:34 -04:00
|
|
|
};
|
|
|
|
}
|