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

26 lines
817 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, git, glib, wget, alsaLib, cmake, pulseaudio, gtk2, gtk3 }:
buildRosPackage {
pname = "ros-melodic-webrtc";
version = "59.0.3";
src = fetchurl {
url = "https://github.com/RobotWebTools-release/webrtc_ros-release/archive/release/melodic/webrtc/59.0.3-0.tar.gz";
name = "59.0.3-0.tar.gz";
sha256 = "bdc2b6651bda28702a87bdc1cb9a53dbcd5a47dc7363d71bd81ea87dc0271e77";
};
buildType = "cmake";
buildInputs = [ glib alsaLib pulseaudio gtk2 gtk3 ];
propagatedBuildInputs = [ glib alsaLib pulseaudio gtk2 gtk3 ];
nativeBuildInputs = [ git wget cmake ];
meta = {
description = ''WebRTC Native API'';
license = with lib.licenses; [ bsdOriginal ];
};
}