mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
xorg xf86-video-amdgpu: init at 1.1.0
Fixes #17682, closes #17857. The resulting binary is the same as in the PR, but this uses auto-generated expression with override.
This commit is contained in:
parent
6522715429
commit
ab95a3ff7f
3 changed files with 16 additions and 0 deletions
|
@ -1678,6 +1678,17 @@ let
|
|||
meta.platforms = stdenv.lib.platforms.unix;
|
||||
}) // {inherit ;};
|
||||
|
||||
xf86videoamdgpu = (mkDerivation "xf86videoamdgpu" {
|
||||
name = "xf86-video-amdgpu-1.1.0";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = mirror://xorg/individual/driver/xf86-video-amdgpu-1.1.0.tar.bz2;
|
||||
sha256 = "0cbrqpmi1hgbsi0i93v0yp7lv3wf4s0vbdlrj19cxmglv7gd1xb9";
|
||||
};
|
||||
buildInputs = [pkgconfig fontsproto mesa libdrm udev randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ];
|
||||
meta.platforms = stdenv.lib.platforms.unix;
|
||||
}) // {inherit fontsproto mesa libdrm udev randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ;};
|
||||
|
||||
xf86videoark = (mkDerivation "xf86videoark" {
|
||||
name = "xf86-video-ark-0.7.5";
|
||||
builder = ./builder.sh;
|
||||
|
|
|
@ -323,6 +323,10 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
xf86videoamdgpu = attrs: attrs // {
|
||||
configureFlags = [ "--with-xorg-conf-dir=$(out)/share/X11/xorg.conf.d" ];
|
||||
};
|
||||
|
||||
xf86videoati = attrs: attrs // {
|
||||
NIX_CFLAGS_COMPILE = "-I${xorg.xorgserver}/include/xorg";
|
||||
};
|
||||
|
|
|
@ -127,6 +127,7 @@ mirror://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2
|
|||
mirror://xorg/individual/driver/xf86-input-synaptics-1.8.3.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-amdgpu-1.1.0.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-ark-0.7.5.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-ast-1.1.5.tar.bz2
|
||||
mirror://xorg/individual/driver/xf86-video-ati-7.7.0.tar.bz2
|
||||
|
|
Loading…
Reference in a new issue