nixpkgs/pkgs/servers/x11/xorg/replacements.nix
Eelco Dolstra 964b969066 * Remove ... for now.
svn path=/nixpkgs/trunk/; revision=13143
2008-10-29 09:42:11 +00:00

22 lines
766 B
Nix

{stdenv, fetchurl, xorg, automake, autoconf, libtool, composedArgsAndFun}:
{
xf86videoati = {src, suffix}:
composedArgsAndFun stdenv.mkDerivation {
name = "xf86-video-ati-${suffix}";
buildInputs = xorg.xf86videoati.buildInputs ++
[autoconf automake libtool];
builder = ./builder.sh;
inherit src;
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DPACKAGE_VERSION_MAJOR=6"
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DPACKAGE_VERSION_MINOR=9"
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DPACKAGE_VERSION_PATCHLEVEL=999"
sed -e 's/@DRIVER_MAN_SUFFIX@/man/g' -i man/Makefile.am
export DRIVER_MAN_DIR=$out/share/man/man5
./autogen.sh
'';
};
}