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/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, pulseaudio, gtk3, gtk2, git, wget, alsaLib, cmake, glib }:
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 = [ pulseaudio gtk3 gtk2 alsaLib glib ];
propagatedBuildInputs = [ pulseaudio gtk3 gtk2 alsaLib glib ];
nativeBuildInputs = [ git cmake wget ];
meta = {
description = ''WebRTC Native API'';
license = with lib.licenses; [ bsdOriginal ];
};
}