mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
808 B
Nix
24 lines
808 B
Nix
|
|
# Copyright 2021 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";
|
|
name = "1.1.0-0.tar.gz";
|
|
sha256 = "a187ab79ea2545b2dec0f48d74af9b4f3875f73ac649c8527e54e9ea6cda0e29";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ pythonPackages.pyqt5_with_qtwebkit ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This encapsulates the WebKit dependency for a specific ROS distribution and its Qt version'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|