mumble: Add an install phase to move files to a bin directory.
svn path=/nixpkgs/trunk/; revision=26861
This commit is contained in:
parent
ebc8642aec
commit
d53592905e
1 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, qt4, libvorbis, boost, speechd, protobuf, libsndfile,
|
||||
avahi, dbus, libcap }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mumble-" + version;
|
||||
version = "1.2.2";
|
||||
|
@ -16,13 +16,18 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
configurePhase = ''
|
||||
qmake PREFIX=$out CONFIG+=no-g15 CONFIG+=no-update \
|
||||
qmake CONFIG+=no-g15 CONFIG+=no-update \
|
||||
CONFIG+=no-embed-qt-translations CONFIG+=no-ice
|
||||
'';
|
||||
|
||||
buildInputs = [ qt4 libvorbis boost speechd protobuf libsndfile avahi dbus
|
||||
libcap ];
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out
|
||||
cp -r ./release $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://mumble.sourceforge.net/;
|
||||
description = "Low-latency, high quality voice chat software";
|
||||
|
|
Loading…
Reference in a new issue