3
0
Fork 0
forked from mirrors/nixpkgs

Ratpoison: Fix glibc 2.11 builds.

svn path=/nixpkgs/trunk/; revision=19867
This commit is contained in:
Ludovic Courtès 2010-02-08 15:33:18 +00:00
parent ef43e6fc18
commit b34165054d
2 changed files with 47 additions and 8 deletions

View file

@ -1,14 +1,53 @@
{stdenv, fetchurl, libX11, inputproto, libXt, libXpm, libXft, fontconfig,
libXtst, xextproto, readline, libXi}:
stdenv.mkDerivation {
{ stdenv, fetchurl, libX11, inputproto, libXt, libXpm, libXft, fontconfig
, libXtst, xextproto, readline, libXi, pkgconfig, autoconf, automake }:
stdenv.mkDerivation rec {
name = "ratpoison-1.4.5";
src = fetchurl {
url = http://download.savannah.gnu.org/releases/ratpoison/ratpoison-1.4.5.tar.gz;
url = "mirror://savannah/ratpoison/${name}.tar.gz";
sha256 = "7391079db20b8613eecfd81d64d243edc9d3c586750c8f2da2bb9db14d260f03";
};
buildInputs = [libX11 inputproto libXt
libXpm libXft fontconfig libXtst
xextproto readline libXi];
patches =
[ (fetchurl {
url = "http://git.savannah.gnu.org/cgit/ratpoison.git/patch/?id=4ad0b38fb53506d613c4b4f7268dadfcedae9b8e";
sha256 = "09aa5l7qicld1prfsql6znlz3z8j67rlznw1vj7aja435rxm4lq9";
})
];
preConfigure = "autoreconf -vf";
buildInputs =
[ libX11 inputproto libXt
libXpm libXft fontconfig libXtst
xextproto readline libXi pkgconfig
autoconf automake # needed because of the patch above
];
meta = {
description = "Ratpoison, a simple mouse-free tiling window manager";
longDescription =
'' Ratpoison is a simple window manager with no fat library
dependencies, no fancy graphics, no window decorations, and no
rodent dependence. It is largely modelled after GNU Screen which
has done wonders in the virtual terminal market.
The screen can be split into non-overlapping frames. All windows
are kept maximized inside their frames to take full advantage of
your precious screen real estate.
All interaction with the window manager is done through keystrokes.
Ratpoison has a prefix map to minimize the key clobbering that
cripples Emacs and other quality pieces of software.
'';
license = "GPLv2+";
homepage = http://www.nongnu.org/ratpoison/;
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View file

@ -7811,7 +7811,7 @@ let
};
ratpoison = import ../applications/window-managers/ratpoison {
inherit fetchurl stdenv fontconfig readline;
inherit fetchurl stdenv fontconfig readline pkgconfig autoconf automake;
inherit (xlibs) libX11 inputproto libXt libXpm libXft
libXtst xextproto libXi;
};