2010-08-29 21:36:54 +02:00
|
|
|
{stdenv, fetchurl, python, sip, qt4, pythonDBus, pkgconfig, lndir, makeWrapper }:
|
2009-02-25 17:05:13 +01:00
|
|
|
|
2010-11-24 11:48:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-03-04 20:57:52 +01:00
|
|
|
name = "PyQt-x11-gpl-4.8.1";
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2011-03-04 20:57:52 +01:00
|
|
|
url = "http://nixos.org/tarballs/${name}.tar.gz";
|
|
|
|
sha256 = "0w7k1jz7wcfwqq77hiwgds5s6py7kkg1rszd6c94bk9dr06vishz";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2010-08-29 21:36:54 +02:00
|
|
|
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'';
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2010-08-29 21:36:54 +02:00
|
|
|
propagatedBuildInputs = [ python sip qt4 ]
|
|
|
|
++ pythonDBus.propagatedBuildNativeInputs;
|
|
|
|
buildInputs = [ pkgconfig makeWrapper lndir ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
done'';
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2009-09-10 19:00:30 +02:00
|
|
|
meta = {
|
|
|
|
description = "Python bindings for Qt";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
2010-03-23 15:04:47 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2009-09-10 19:00:30 +02:00
|
|
|
};
|
2009-02-25 17:05:13 +01:00
|
|
|
}
|