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
@@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, glib}:
stdenv.mkDerivation {
name = "desktop-file-utils-0.15";
src = fetchurl {
url = http://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.15.tar.gz;
md5 = "2fe8ebe222fc33cd4a959415495b7eed";
};
buildInputs = [ pkgconfig glib ];
}