* Added pygtk.

* Updated bittorrent to 4.0.1.

svn path=/nixpkgs/trunk/; revision=2879
This commit is contained in:
Eelco Dolstra
2005-04-22 18:26:04 +00:00
parent 2ed47f7522
commit 4e4ad61aee
4 changed files with 32 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, python, pkgconfig, glib, gtk}:
stdenv.mkDerivation {
name = "pygtk-2.6.1";
# builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.6/pygtk-2.6.1.tar.bz2;
md5 = "b4610829e4f57b5538dfa3b8f1fbe026";
};
buildInputs = [python pkgconfig glib gtk];
}