5f85d4c19c
svn path=/nixpkgs/branches/x-updates/; revision=25951
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{stdenv, fetchurl, x11, libjpeg, libpng, libXmu, freetype, pam}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "slim-1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.berlios.de/slim/${name}.tar.gz";
|
|
sha256 = "1f42skdp5k1zrb364s3i0ps5wmx9szz9h192i2dkn9az00jh2mpi";
|
|
};
|
|
|
|
patches = [
|
|
# Allow the paths of the configuration file and theme directory to
|
|
# be set at runtime.
|
|
./runtime-paths.patch
|
|
|
|
# Fix a bug in slim's PAM support: the "resp" argument to the
|
|
# conversation function is a pointer to a pointer to an array of
|
|
# pam_response structures, not a pointer to an array of pointers to
|
|
# pam_response structures. Of course C can't tell the difference...
|
|
./pam.patch
|
|
|
|
# Don't set PAM_RHOST to "localhost", it confuses ConsoleKit
|
|
# (which assumes that a non-empty string means a remote session).
|
|
./pam2.patch
|
|
];
|
|
|
|
buildInputs = [x11 libjpeg libpng libXmu freetype pam];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
|
|
|
|
preBuild = ''
|
|
substituteInPlace Makefile --replace /usr /no-such-path
|
|
makeFlagsArray=(CC=gcc CXX=g++ PREFIX=$out MANDIR=$out/share/man CFGDIR=$out/etc USE_PAM=1)
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://slim.berlios.de;
|
|
};
|
|
}
|