3
0
Fork 0
forked from mirrors/nixpkgs

dxvk: limit to Intel platforms

This commit is contained in:
Randy Eckenrode 2022-06-01 16:47:56 -04:00
parent 2a7827fac3
commit 0f7e594160
No known key found for this signature in database
GPG key ID: 64C1CD4EC2A600D9

View file

@ -83,6 +83,6 @@ stdenvNoCC.mkDerivation (finalAttrs:
changelog = "https://github.com/doitsujin/dxvk/releases";
maintainers = [ lib.maintainers.reckenrode ];
license = lib.licenses.zlib;
platforms = lib.platforms.unix;
platforms = [ "x86_64-darwin" "i686-linux" "x86_64-linux" ];
};
})