* 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:
9
pkgs/tools/networking/p2p/gtk-gnutella/builder.sh
Normal file
9
pkgs/tools/networking/p2p/gtk-gnutella/builder.sh
Normal 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
|
||||
11
pkgs/tools/networking/p2p/gtk-gnutella/default.nix
Normal file
11
pkgs/tools/networking/p2p/gtk-gnutella/default.nix
Normal 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];
|
||||
}
|
||||
Reference in New Issue
Block a user