lol

Merge pull request #155241 from jansol/renderdoc

renderdoc: 1.16 -> 1.17

authored by

Bobby Rong and committed by
GitHub
32e4b994 a9c80a5d

+28 -7
+28 -7
pkgs/applications/graphics/renderdoc/default.nix
··· 1 - { lib, fetchFromGitHub, cmake, pkg-config, mkDerivation 2 - , qtbase, qtx11extras, qtsvg, makeWrapper 3 - , vulkan-loader, libglvnd, xorg, python3, python3Packages 4 - , bison, pcre, automake, autoconf, addOpenGLRunpath 5 - , waylandSupport ? false, wayland 1 + { lib 2 + , fetchFromGitHub 3 + , nix-update-script 4 + , cmake 5 + , pkg-config 6 + , mkDerivation 7 + , qtbase 8 + , qtx11extras 9 + , qtsvg 10 + , makeWrapper 11 + , vulkan-loader 12 + , libglvnd 13 + , xorg 14 + , python3 15 + , python3Packages 16 + , bison 17 + , pcre 18 + , automake 19 + , autoconf 20 + , addOpenGLRunpath 21 + , waylandSupport ? false 22 + , wayland 6 23 }: 7 24 let 8 25 custom_swig = fetchFromGitHub { ··· 15 32 in 16 33 mkDerivation rec { 17 34 pname = "renderdoc"; 18 - version = "1.16"; 35 + version = "1.17"; 19 36 20 37 src = fetchFromGitHub { 21 38 owner = "baldurk"; 22 39 repo = "renderdoc"; 23 40 rev = "v${version}"; 24 - sha256 = "150d1qzjs420clqr48gickiw5ymjx4md6iyjbxmxsdml0pyxpwwn"; 41 + sha256 = "sha256-Zr7Av49mK48B4N+Ca2vPIgKuVNP4YLVEs4EQepukSs8="; 25 42 }; 26 43 27 44 buildInputs = [ ··· 63 80 postFixup = '' 64 81 addOpenGLRunpath $out/lib/librenderdoc.so 65 82 ''; 83 + 84 + passthru.updateScript = nix-update-script { 85 + attrPath = pname; 86 + }; 66 87 67 88 meta = with lib; { 68 89 description = "A single-frame graphics debugger";