forked from mirrors/nixpkgs
xorg: add xf86-video-qxl
This commit is contained in:
parent
b1d225b645
commit
99e300c4f8
|
@ -1644,6 +1644,16 @@ let
|
|||
buildInputs = [pkgconfig fontsproto glproto libdrm udev libpciaccess randrproto renderproto videoproto libX11 libXext xextproto xf86driproto xorgserver xproto libXvMC ];
|
||||
}) // {inherit fontsproto glproto libdrm udev libpciaccess randrproto renderproto videoproto libX11 libXext xextproto xf86driproto xorgserver xproto libXvMC ;};
|
||||
|
||||
xf86videoqxl = (mkDerivation "xf86videoqxl" {
|
||||
name = "xf86-video-qxl-0.1.2";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = mirror://xorg/individual/driver/xf86-video-qxl-0.1.2.tar.bz2;
|
||||
sha256 = "09sjpkg7klzzg9sagmqpsw911501vqk9wdd4nr0jkqqanvkx39s3";
|
||||
};
|
||||
buildInputs = [pkgconfig fontsproto libdrm udev libpciaccess randrproto renderproto videoproto xf86dgaproto xorgserver xproto ];
|
||||
}) // {inherit fontsproto libdrm udev libpciaccess randrproto renderproto videoproto xf86dgaproto xorgserver xproto ;};
|
||||
|
||||
xf86videor128 = (mkDerivation "xf86videor128" {
|
||||
name = "xf86-video-r128-6.9.2";
|
||||
builder = ./builder.sh;
|
||||
|
|
|
@ -202,7 +202,11 @@ in
|
|||
};
|
||||
|
||||
xf86videovmware = attrs: attrs // {
|
||||
buildInputs = attrs.buildInputs ++ [ args.mesa_drivers ]; # for libxatracker
|
||||
buildinputs = attrs.buildinputs ++ [ args.mesa_drivers ]; # for libxatracker
|
||||
};
|
||||
|
||||
xf86videoqxl = attrs: attrs // {
|
||||
buildInputs = attrs.buildInputs ++ [ args.spice_protocol ];
|
||||
};
|
||||
|
||||
xdriinfo = attrs: attrs // {
|
||||
|
|
|
@ -138,6 +138,7 @@ mirror://xorg/individual/driver/xf86-video-intel-2.21.15.tar.bz2
|
|||
mirror://xorg/individual/driver/xf86-video-mach64-6.9.4.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-mga-1.6.3.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-modesetting-0.9.0.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-qxl-0.1.2.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-neomagic-1.2.8.tar.bz2
|
||||
mirror://xorg/X11R7.7/src/everything/xf86-video-newport-0.2.4.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-nv-2.1.20.tar.bz2
|
||||
|
|
|
@ -7076,7 +7076,7 @@ let
|
|||
|
||||
xorg = recurseIntoAttrs (import ../servers/x11/xorg/default.nix {
|
||||
inherit clangStdenv fetchurl fetchgit fetchpatch stdenv pkgconfig intltool freetype fontconfig
|
||||
libxslt expat libpng zlib perl mesa_drivers
|
||||
libxslt expat libpng zlib perl mesa_drivers spice_protocol
|
||||
dbus libuuid openssl gperf m4
|
||||
autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman;
|
||||
mesa = mesa_noglu;
|
||||
|
|
Loading…
Reference in a new issue