mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Make pyqt-dbus work
svn path=/nixpkgs/trunk/; revision=23519
This commit is contained in:
parent
5994279104
commit
0a28239504
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, python, sip, qt4}:
|
||||
{stdenv, fetchurl, python, sip, qt4, pythonDBus, pkgconfig, lndir, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pyqt-x11-gpl-4.7.4";
|
||||
@ -8,9 +8,32 @@ stdenv.mkDerivation {
|
||||
sha256 = "0a7iqzp75hd29rvwhyqfmaj5ymd49wq8scysjkivhc5qkx5rh00r";
|
||||
};
|
||||
|
||||
configurePhase = "python ./configure.py --confirm-license -b $out/bin -d $out/lib/${python.libPrefix}/site-packages -v $out/share/sip -p $out/plugins";
|
||||
preConfigure = ''
|
||||
ensureDir $out
|
||||
lndir ${pythonDBus} $out
|
||||
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
|
||||
configureFlagsArray=( \
|
||||
--confirm-license --bindir $out/bin \
|
||||
--destdir $out/lib/${python.libPrefix}/site-packages \
|
||||
--plugin-destdir $out/lib/qt4/plugins --sipdir $out/share/sip \
|
||||
--dbus=$out/include/dbus-1.0 --verbose)
|
||||
'';
|
||||
|
||||
configureScript="./configure.py";
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
python configure.py $configureFlags "''${configureFlagsArray[@]}"
|
||||
runHook postConfigure'';
|
||||
|
||||
buildInputs = [ python sip qt4 ];
|
||||
propagatedBuildInputs = [ python sip qt4 ]
|
||||
++ pythonDBus.propagatedBuildNativeInputs;
|
||||
buildInputs = [ pkgconfig makeWrapper lndir ];
|
||||
|
||||
postInstall = ''
|
||||
for i in $out/bin/*; do
|
||||
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
||||
done'';
|
||||
|
||||
meta = {
|
||||
description = "Python bindings for Qt";
|
||||
|
Loading…
Reference in New Issue
Block a user