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:
11
pkgs/development/python-modules/pycups/default.nix
Normal file
11
pkgs/development/python-modules/pycups/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, python, cups}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pycups-1.9.45";
|
||||
src = fetchurl {
|
||||
url = http://cyberelk.net/tim/data/pycups/pycups-1.9.45.tar.bz2;
|
||||
md5 = "ff634a6751f8a859ed26751bf03abef0";
|
||||
};
|
||||
installPhase = "python ./setup.py install --prefix $out";
|
||||
buildInputs = [ python cups ];
|
||||
}
|
||||
11
pkgs/development/python-modules/pyqt/default.nix
Normal file
11
pkgs/development/python-modules/pyqt/default.nix
Normal 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 ];
|
||||
}
|
||||
11
pkgs/development/python-modules/python-sip/default.nix
Normal file
11
pkgs/development/python-modules/python-sip/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, python}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sip-4.7.9";
|
||||
src = fetchurl {
|
||||
url = http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.7.9.tar.gz;
|
||||
md5 = "597d7ff7edb42a18421c806ffd18a136";
|
||||
};
|
||||
configurePhase = "python ./configure.py -d $out/lib/python2.5/site-packages -b $out/bin -e $out/include";
|
||||
buildInputs = [ python ];
|
||||
}
|
||||
Reference in New Issue
Block a user