summary refs log blame commit diff
path: root/pkgs/servers/x11/xorg/replacements.nix
blob: 3a7ac34e61818e408dda1da0e45e4533e4340d82 (plain) (tree)
1
2
3
                                                                          
 
                                

















                                                                                        
{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
      '';
  };
}