9dd466d123
* Removed some unused versions of those packages. * Don't pass `lib' to packages (because we already have `stdenv.lib'). * Removed some `*_python26' variants because Python 2.6 is the default now. svn path=/nixpkgs/trunk/; revision=20782
23 lines
721 B
Nix
23 lines
721 B
Nix
{stdenv, fetchurl, python, sip, qt4}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pyqt-x11-gpl-4.7.2";
|
|
|
|
src = fetchurl {
|
|
url = http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-4.7.tar.gz;
|
|
sha256 = "0hwp84igw639mgw344q2jmnjarhq5wk60ncn8h2jjg7k4vchbvkz";
|
|
};
|
|
|
|
configurePhase = "python ./configure.py --confirm-license -b $out/bin -d $out/lib/${python.libPrefix}/site-packages -v $out/share/sip -p $out/plugins";
|
|
|
|
buildInputs = [ python sip qt4 ];
|
|
|
|
meta = {
|
|
description = "Python bindings for Qt";
|
|
license = "GPL";
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
};
|
|
}
|