1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

dxvk: add an update script

This commit is contained in:
Randy Eckenrode 2023-07-11 11:09:20 -06:00
parent 94c52940c4
commit d532dbefb9
No known key found for this signature in database
GPG key ID: 64C1CD4EC2A600D9
2 changed files with 12 additions and 5 deletions

View file

@ -5,12 +5,13 @@
, meson
, ninja
, windows
, dxvkVersion
, dxvkVersion ? "default"
, spirv-headers
, vulkan-headers
, SDL2
, glfw
, pkgsBuildHost
, gitUpdater
, sdl2Support ? true
, glfwSupport ? false
}:
@ -43,7 +44,7 @@ let
./darwin-thread-primitives.patch
];
};
"2.1" = rec {
"default" = rec {
version = "2.1";
src = fetchFromGitHub {
owner = "doitsujin";
@ -59,7 +60,7 @@ let
isWindows = stdenv.targetPlatform.uname.system == "Windows";
isCross = stdenv.hostPlatform != stdenv.targetPlatform;
in
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "dxvk";
inherit (srcs.${dxvkVersion}) version src patches;
@ -95,6 +96,12 @@ stdenv.mkDerivation {
doCheck = isDxvk2 && !isCross;
passthru = lib.optionalAttrs (lib.versionAtLeast finalAttrs.version "2.0") {
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = {
description = "A Vulkan-based translation layer for Direct3D 9/10/11";
homepage = "https://github.com/doitsujin/dxvk";
@ -103,4 +110,4 @@ stdenv.mkDerivation {
license = lib.licenses.zlib;
platforms = lib.platforms.windows ++ lib.optionals isDxvk2 lib.platforms.linux;
};
}
})

View file

@ -39521,7 +39521,7 @@ with pkgs;
dxvk = callPackage ../misc/dxvk { };
dxvk_1 = callPackage ../misc/dxvk/dxvk.nix { dxvkVersion = "1.10"; };
dxvk_2 = callPackage ../misc/dxvk/dxvk.nix { dxvkVersion = "2.1"; };
dxvk_2 = callPackage ../misc/dxvk/dxvk.nix { };
ec2stepshell = callPackage ../tools/security/ec2stepshell { };