mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
jitsi: 2.10.5550 -> 2.11.5633
Diff: https://github.com/jitsi/jitsi/compare/5550...5633
This commit is contained in:
parent
7b60fce843
commit
de15b5ffc8
@ -1,4 +1,4 @@
|
||||
{ stdenv, lib, fetchurl, makeDesktopItem, unzip, ant, jdk8
|
||||
{ stdenv, lib, fetchFromGitHub, makeDesktopItem, unzip, ant, jdk8
|
||||
# Optional, Jitsi still runs without, but you may pass null:
|
||||
, alsa-lib, dbus, gtk2, libpulseaudio, openssl, xorg
|
||||
}:
|
||||
@ -6,11 +6,13 @@
|
||||
let jdk = jdk8; in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jitsi";
|
||||
version = "2.10.5550";
|
||||
version = "2.11.5633";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.jitsi.org/jitsi/src/jitsi-src-${version}.zip";
|
||||
sha256 = "11vjchc3dnzj55x7c62wsm6masvwmij1ifkds917r1qvil1nzz6d";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jitsi";
|
||||
repo = "jitsi";
|
||||
rev = "refs/tags/${lib.versions.patch version}";
|
||||
hash = "sha256-CN4o0VfHdoUteI2wyJ2hFJ9UsQ2wWUzcvrLMbR/l36M=";
|
||||
};
|
||||
|
||||
patches = [ ./jitsi.patch ];
|
||||
@ -63,7 +65,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://jitsi.org/";
|
||||
homepage = "https://desktop.jitsi.org/";
|
||||
description = "Open Source Video Calls and Chat";
|
||||
sourceProvenance = with sourceTypes; [
|
||||
binaryBytecode
|
||||
|
Loading…
Reference in New Issue
Block a user