mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Updating mumble to 1.2.3 and adding pkgconfig as an input as it fails to build without it.
svn path=/nixpkgs/trunk/; revision=33169
This commit is contained in:
parent
6b6b758745
commit
0546a7e79a
@ -1,16 +1,16 @@
|
|||||||
{ stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile,
|
{ stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile,
|
||||||
avahi, dbus, libcap,
|
avahi, dbus, libcap, pkgconfig,
|
||||||
jackSupport ? false,
|
jackSupport ? false,
|
||||||
jackaudio ? null }:
|
jackaudio ? null }:
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mumble-" + version;
|
name = "mumble-" + version;
|
||||||
version = "1.2.2";
|
version = "1.2.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/mumble/${name}.tar.gz";
|
url = "mirror://sourceforge/mumble/${name}.tar.gz";
|
||||||
sha256 = "1s4vlkdfmyzx7h3i4060q0sf2xywl9sm6dpjhaa150blbcylwmic";
|
sha256 = "0p4as6bcmbzkiff1gvc0f277dzbz2sfys97gcbxw7gjamqi53285";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
|
|
||||||
buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi dbus
|
buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi dbus
|
||||||
libcap ]
|
libcap pkgconfig ]
|
||||||
++ (stdenv.lib.optional jackSupport jackaudio);
|
++ (stdenv.lib.optional jackSupport jackaudio);
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user