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, 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 ];
}