1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/webkit-dependency/default.nix

23 lines
736 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# 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 {
url = https://github.com/ros-gbp/webkit_dependency-release/archive/release/melodic/webkit_dependency/1.1.0-0.tar.gz;
sha256 = "a187ab79ea2545b2dec0f48d74af9b4f3875f73ac649c8527e54e9ea6cda0e29";
};
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;
};
}