mumble_git: 2018-01-12 -> 2018-07-01

Replace fetchgit with fetchFromGitHub now that it supports submodules.
This commit is contained in:
Michael Hoang 2018-07-08 01:53:35 +10:00
parent a986631655
commit 26f73b69e5

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchgit, fetchpatch, pkgconfig { stdenv, fetchurl, fetchFromGitHub, fetchpatch, pkgconfig
, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap , qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
, alsaLib, python , alsaLib, python
, jackSupport ? false, libjack2 ? null , jackSupport ? false, libjack2 ? null
@ -126,14 +126,16 @@ let
}; };
gitSource = rec { gitSource = rec {
version = "2018-01-12"; version = "2018-07-01";
qtVersion = 5; qtVersion = 5;
# Needs submodules # Needs submodules
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/mumble-voip/mumble"; owner = "mumble-voip";
rev = "e348e47f4af68eaa8e0f87d1d9fc28c5583e421e"; repo = "mumble";
sha256 = "12z41qfaq6w3i4wcw8pvyb8wwwa8gs3ar5zx6aqx6yssc6513lr3"; rev = "c19ac8c0b0f934d2ff206858d7cb66352d6eb418";
sha256 = "1mzp1bgn49ycs16d6r8icqq35wq25198fs084vyq6j5f78ni7pvz";
fetchSubmodules = true;
}; };
}; };
in { in {