* Added gtk-gnutella.

* Added a patch to MPlayer to fix the aspect ratio on screens rotated
  with Xrandr.
* Disable toolbus for now because it requires a non-existant package
  (tcltk).

svn path=/nixpkgs/trunk/; revision=5171
This commit is contained in:
Eelco Dolstra
2006-04-18 18:46:36 +00:00
parent ba18de03b9
commit cce11c4f1f
6 changed files with 227 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
source $stdenv/setup
configureScript="./Configure"
dontAddPrefix=1
configureFlags="-d -e -D prefix=$out -D gtkversion=2 -D official=true"
genericBuild

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, glib, gtk, libxml2}:
stdenv.mkDerivation {
name = "gtk-gnutella-0.96.1";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/gtk-gnutella/gtk-gnutella-0.96.1.tar.bz2;
md5 = "6529379cc105c1e98f501a67e8e875fd";
};
buildInputs = [pkgconfig glib gtk libxml2];
}