Skip to content

Commit

Permalink
mumble: patch python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Mar 31, 2017
1 parent d8c47a2 commit 1eccb75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/applications/networking/mumble/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, fetchgit, pkgconfig
, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
, alsaLib
, alsaLib, python
, jackSupport ? false, libjack2 ? null
, speechdSupport ? false, speechd ? null
, pulseSupport ? false, libpulseaudio ? null
Expand All @@ -19,7 +19,7 @@ let

patches = optional jackSupport ./mumble-jack-support.patch;

nativeBuildInputs = [ pkgconfig ]
nativeBuildInputs = [ pkgconfig python ]
++ { qt4 = [ qmake4Hook ]; qt5 = [ qt5.qmakeHook ]; }."qt${toString source.qtVersion}"
++ (overrides.nativeBuildInputs or [ ]);
buildInputs = [ boost protobuf avahi ]
Expand All @@ -42,6 +42,7 @@ let

preConfigure = ''
qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib"
patchShebangs scripts
'';

makeFlags = [ "release" ];
Expand Down

0 comments on commit 1eccb75

Please sign in to comment.