Added pycups,desktop_file_utils,system_config_printer packages and added python kdebindings closure

svn path=/nixpkgs/trunk/; revision=14246
This commit is contained in:
Sander van der Burg
2009-02-25 16:05:13 +00:00
parent 44ecf2a4b0
commit 3a1c208a69
8 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, python, sip, qt4}:
stdenv.mkDerivation {
name = "pyqt-x11-gpl-4.4.4";
src = fetchurl {
url = http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-4.4.4.tar.gz;
md5 = "4bd346d56d10452e47ac71e2cbe04229";
};
configurePhase = "python ./configure.py --confirm-license -b $out/bin -d $out/lib/python2.5/site-packages -v $out/share/sip -p $out/plugins";
buildInputs = [ python sip qt4 ];
}