Merge master into staging-next

authored by nixpkgs-ci[bot] and committed by GitHub 1a73f7f3 ba2c37a9

+1643 -9464
+1
nixos/tests/all-tests.nix
··· 1258 1258 qgis-ltr = handleTest ./qgis.nix { package = pkgs.qgis-ltr; }; 1259 1259 qownnotes = runTest ./qownnotes.nix; 1260 1260 qtile = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./qtile/default.nix; 1261 + qtile-extras = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./qtile-extras/default.nix; 1261 1262 quake3 = runTest ./quake3.nix; 1262 1263 quicktun = runTest ./quicktun.nix; 1263 1264 quickwit = runTest ./quickwit.nix;
+22
nixos/tests/qtile-extras/add-startup-hook.patch
··· 1 + --- a/config.py 2025-08-03 00:37:13.058374602 +0200 2 + +++ b/config.py 2025-08-03 00:45:51.869382363 +0200 3 + @@ -24,10 +24,18 @@ 4 + # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 5 + # SOFTWARE. 6 + 7 + -from libqtile import bar, layout, qtile, widget 8 + +from libqtile import bar, layout, qtile, widget, hook 9 + from libqtile.config import Click, Drag, Group, Key, Match, Screen 10 + from libqtile.lazy import lazy 11 + from libqtile.utils import guess_terminal 12 + +from libqtile.log_utils import logger 13 + + 14 + + 15 + +@hook.subscribe.startup 16 + +def print_ready(): 17 + + logger.warning("ready!") # warning to make it always visible 18 + + 19 + + 20 + 21 + mod = "mod4" 22 + terminal = guess_terminal()
+30
nixos/tests/qtile-extras/config.nix
··· 1 + { 2 + stdenvNoCC, 3 + fetchurl, 4 + }: 5 + stdenvNoCC.mkDerivation { 6 + name = "qtile-extras-config"; 7 + version = "0.0.1"; 8 + 9 + src = fetchurl { 10 + url = "https://raw.githubusercontent.com/qtile/qtile/v0.28.1/libqtile/resources/default_config.py"; 11 + hash = "sha256-Y5W277CWVNSi4BdgEW/f7Px/MMjnN9W9TDqdOncVwPc="; 12 + }; 13 + 14 + prePatch = '' 15 + cp $src config.py 16 + ''; 17 + 18 + patches = [ 19 + ./add-widget.patch 20 + ./add-startup-hook.patch 21 + ]; 22 + 23 + dontUnpack = true; 24 + dontBuild = true; 25 + 26 + installPhase = '' 27 + mkdir -p $out 28 + cp config.py $out/config.py 29 + ''; 30 + }
+65
nixos/tests/qtile-extras/default.nix
··· 1 + { lib, ... }: 2 + { 3 + name = "qtile-extras"; 4 + 5 + meta = { 6 + maintainers = with lib.maintainers; [ 7 + sigmanificient 8 + gurjaka 9 + ]; 10 + }; 11 + 12 + nodes.machine = 13 + { 14 + pkgs, 15 + lib, 16 + ... 17 + }: 18 + let 19 + # We create a custom Qtile configuration file that adds a widget from 20 + # qtile-extras to the bar. This ensure that the qtile-extras package 21 + # also works, and that extraPackages behave as expected. 22 + config-deriv = pkgs.callPackage ./config.nix { }; 23 + in 24 + { 25 + imports = [ 26 + ../common/x11.nix 27 + ../common/user-account.nix 28 + ]; 29 + test-support.displayManager.auto.user = "alice"; 30 + 31 + services.xserver.windowManager.qtile = { 32 + enable = true; 33 + configFile = "${config-deriv}/config.py"; 34 + extraPackages = ps: [ ps.qtile-extras ]; 35 + }; 36 + 37 + services.displayManager.defaultSession = lib.mkForce "qtile"; 38 + 39 + environment.systemPackages = [ pkgs.kitty ]; 40 + }; 41 + 42 + testScript = '' 43 + from pathlib import Path 44 + 45 + with subtest("ensure x starts"): 46 + machine.wait_for_x() 47 + machine.wait_for_file("/home/alice/.Xauthority") 48 + machine.succeed("xauth merge ~alice/.Xauthority") 49 + 50 + with subtest("ensure client is available"): 51 + machine.succeed("qtile --version") 52 + 53 + with subtest("Qtile signals that it is ready"): 54 + qtile_logfile = Path("/home/alice/.local/share/qtile/qtile.log") 55 + 56 + machine.succeed(f"mkdir -p {qtile_logfile.parent}") 57 + machine.succeed(f"touch {qtile_logfile}") 58 + machine.succeed(f"sh -c 'tail -f {qtile_logfile} | grep --line-buffered \'ready\' -m 1'") 59 + 60 + with subtest("ensure we can open a new terminal"): 61 + machine.send_key("meta_l-ret") 62 + machine.wait_for_window(r"alice.*?machine") 63 + machine.screenshot("terminal") 64 + ''; 65 + }
+22
nixos/tests/qtile/add-startup-hook.patch
··· 1 + --- a/config.py 2025-08-03 00:37:13.058374602 +0200 2 + +++ b/config.py 2025-08-03 00:45:51.869382363 +0200 3 + @@ -24,10 +24,18 @@ 4 + # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 5 + # SOFTWARE. 6 + 7 + -from libqtile import bar, layout, qtile, widget 8 + +from libqtile import bar, layout, qtile, widget, hook 9 + from libqtile.config import Click, Drag, Group, Key, Match, Screen 10 + from libqtile.lazy import lazy 11 + from libqtile.utils import guess_terminal 12 + +from libqtile.log_utils import logger 13 + + 14 + + 15 + +@hook.subscribe.startup 16 + +def print_ready(): 17 + + logger.warning("ready!") # warning to make it always visible 18 + + 19 + + 20 + 21 + mod = "mod4" 22 + terminal = guess_terminal()
nixos/tests/qtile/add-widget.patch nixos/tests/qtile-extras/add-widget.patch
+6 -3
nixos/tests/qtile/config.nix
··· 1 - { stdenvNoCC, fetchurl }: 1 + { 2 + stdenvNoCC, 3 + fetchurl, 4 + }: 2 5 stdenvNoCC.mkDerivation { 3 - name = "qtile-config"; 6 + name = "qtile-extras-config"; 4 7 version = "0.0.1"; 5 8 6 9 src = fetchurl { ··· 12 15 cp $src config.py 13 16 ''; 14 17 15 - patches = [ ./add-widget.patch ]; 18 + patches = [ ./add-startup-hook.patch ]; 16 19 17 20 dontUnpack = true; 18 21 dontBuild = true;
+25 -9
nixos/tests/qtile/default.nix
··· 3 3 name = "qtile"; 4 4 5 5 meta = { 6 - maintainers = with lib.maintainers; [ sigmanificient ]; 6 + maintainers = with lib.maintainers; [ 7 + sigmanificient 8 + gurjaka 9 + ]; 7 10 }; 8 11 9 12 nodes.machine = 10 - { pkgs, lib, ... }: 13 + { 14 + pkgs, 15 + lib, 16 + ... 17 + }: 11 18 let 12 - # We create a custom Qtile configuration file that adds a widget from 13 - # qtile-extras to the bar. This ensure that the qtile-extras package 14 - # also works, and that extraPackages behave as expected. 15 - 19 + # We create a custom Qtile configuration file that adds a 20 + # startup hook to qtile. This ensure we can reproducibly check 21 + # when Qtile is truly ready to receive our inputs 16 22 config-deriv = pkgs.callPackage ./config.nix { }; 17 23 in 18 24 { ··· 30 36 31 37 services.displayManager.defaultSession = lib.mkForce "qtile"; 32 38 33 - environment.systemPackages = [ pkgs.kitty ]; 39 + environment.systemPackages = [ 40 + pkgs.kitty 41 + pkgs.xorg.xwininfo 42 + ]; 34 43 }; 35 44 36 45 testScript = '' 46 + from pathlib import Path 47 + 37 48 with subtest("ensure x starts"): 38 49 machine.wait_for_x() 39 50 machine.wait_for_file("/home/alice/.Xauthority") ··· 42 53 with subtest("ensure client is available"): 43 54 machine.succeed("qtile --version") 44 55 56 + with subtest("Qtile signals that it is ready"): 57 + qtile_logfile = Path("/home/alice/.local/share/qtile/qtile.log") 58 + 59 + machine.succeed(f"mkdir -p {qtile_logfile.parent}") 60 + machine.succeed(f"touch {qtile_logfile}") 61 + machine.succeed(f"sh -c 'tail -f {qtile_logfile} | grep --line-buffered \'ready\' -m 1'") 62 + 45 63 with subtest("ensure we can open a new terminal"): 46 - machine.sleep(2) 47 64 machine.send_key("meta_l-ret") 48 65 machine.wait_for_window(r"alice.*?machine") 49 - machine.sleep(2) 50 66 machine.screenshot("terminal") 51 67 ''; 52 68 }
+2 -11
pkgs/applications/audio/carla/default.nix
··· 28 28 29 29 stdenv.mkDerivation (finalAttrs: { 30 30 pname = "carla"; 31 - version = "2.5.9"; 31 + version = "2.5.10"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "falkTX"; 35 35 repo = "carla"; 36 36 rev = "v${finalAttrs.version}"; 37 - hash = "sha256-FM/6TtNhDml1V9C5VisjLcZ3CzXsuwCZrsoz4yP3kI8="; 37 + hash = "sha256-21QaFCIjGjRTcJtf2nwC5RcVJF8JgcFPIbS8apvf9tw="; 38 38 }; 39 - 40 - patches = [ 41 - (fetchpatch2 { 42 - # https://github.com/falkTX/Carla/pull/1933 43 - name = "prefer-pyliblo3-over-pyliblo.patch"; 44 - url = "https://github.com/falkTX/Carla/commit/a81a2a545d2529233a6e0faa776fbd2d851442fb.patch?full_index=1"; 45 - hash = "sha256-CHK3Aq/W9PdfMGsJunLN/WAxOmWJHc0jr/3TdEaIcMM="; 46 - }) 47 - ]; 48 39 49 40 nativeBuildInputs = [ 50 41 python3Packages.wrapPython
+10 -10
pkgs/applications/editors/vscode/extensions/default.nix
··· 1501 1501 # semver scheme, contrary to preview versions which are listed on 1502 1502 # the VSCode Marketplace and use a calver scheme. We should avoid 1503 1503 # using preview versions, because they expire after two weeks. 1504 - version = "17.3.2"; 1505 - hash = "sha256-z93AKGwgW5ySgb+5iCEXb/N9sWu3S3aS6PqKt8LXZjY="; 1504 + version = "17.3.3"; 1505 + hash = "sha256-o16wFKcH/sYluRWXSTulZ9K7D/ECUXa3w6DeikVQe5w="; 1506 1506 }; 1507 1507 meta = { 1508 1508 changelog = "https://marketplace.visualstudio.com/items/eamodio.gitlens/changelog"; ··· 2203 2203 mktplcRef = { 2204 2204 publisher = "haskell"; 2205 2205 name = "haskell"; 2206 - version = "2.6.0"; 2207 - hash = "sha256-2lvG7yZ+QAoafwyWQkVwyl2MsP8zWWQkTw8hBtib+C0="; 2206 + version = "2.6.1"; 2207 + hash = "sha256-44pQBHz8e1dCqZaa5+GhPr0/SUsHlaqdNMPZklKdY+Q="; 2208 2208 }; 2209 2209 meta = { 2210 2210 license = lib.licenses.mit; ··· 3735 3735 mktplcRef = { 3736 3736 name = "ocaml-platform"; 3737 3737 publisher = "ocamllabs"; 3738 - version = "1.30.1"; 3739 - hash = "sha256-N6GPqUKMW5VC2oxKvRQWQjKtcIlvvf7M00nj8O6e4xw="; 3738 + version = "1.32.0"; 3739 + hash = "sha256-tLGHAEvKy+83PcF35zMABV7HtdXZGwCBdhMB+EG1El0="; 3740 3740 }; 3741 3741 }; 3742 3742 ··· 4614 4614 mktplcRef = { 4615 4615 name = "tabnine-vscode"; 4616 4616 publisher = "tabnine"; 4617 - version = "3.297.0"; 4618 - hash = "sha256-K5XRBefGWG3BGyBCK0QIpZ6Jjm+qNjVEyMucCGs+LKs="; 4617 + version = "3.298.0"; 4618 + hash = "sha256-zzsoVOiSgA5W88YuWVHILdHN/PuWaQAXjZ0eUL9B9ZI="; 4619 4619 }; 4620 4620 meta = { 4621 4621 license = lib.licenses.mit; ··· 5573 5573 mktplcRef = { 5574 5574 name = "vscode-zig"; 5575 5575 publisher = "ziglang"; 5576 - version = "0.6.11"; 5577 - hash = "sha256-yJrU47C/cJKmVcPoI1ibsBAiA0zSyP0AE6p87DUl28M="; 5576 + version = "0.6.12"; 5577 + hash = "sha256-7oZWKk7qqG9maGcjurpsbD1frIH/g+KKe4F2BXmqTeo="; 5578 5578 }; 5579 5579 meta = { 5580 5580 changelog = "https://marketplace.visualstudio.com/items/ziglang.vscode-zig/changelog";
+2 -2
pkgs/applications/editors/vscode/extensions/detachhead.basedpyright/default.nix
··· 8 8 mktplcRef = { 9 9 name = "basedpyright"; 10 10 publisher = "detachhead"; 11 - version = "1.31.0"; 12 - hash = "sha256-ZwVtvjzrAlScj/dcYEG4XVi7dcRI/Lny052pFXbVmHc="; 11 + version = "1.31.1"; 12 + hash = "sha256-MlkLoM1415KYCKlwfV67HLLvmF7PRtdyQrPgeNm2nyM="; 13 13 }; 14 14 meta = { 15 15 changelog = "https://github.com/detachhead/basedpyright/releases";
+3 -3
pkgs/applications/emulators/libretro/cores/fbneo.nix
··· 5 5 }: 6 6 mkLibretroCore { 7 7 core = "fbneo"; 8 - version = "0-unstable-2025-07-24"; 8 + version = "0-unstable-2025-08-01"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "libretro"; 12 12 repo = "fbneo"; 13 - rev = "ae41c16e10a1996e71ac7dd9a5484b725b8d1a51"; 14 - hash = "sha256-mBlk4tjMd67dOw/+oYC0ly7u2Soqva4MxiODGXPjBrM="; 13 + rev = "e90b821fc0507a6bdde3596ec32b7b59feae1d1a"; 14 + hash = "sha256-DbY+bQ4vNj4q2Q/tmEZXngdlUHqfZXTl16m14VG5gYY="; 15 15 }; 16 16 17 17 makefile = "Makefile";
+3 -3
pkgs/applications/emulators/libretro/cores/mame.nix
··· 9 9 }: 10 10 mkLibretroCore { 11 11 core = "mame"; 12 - version = "0-unstable-2025-07-12"; 12 + version = "0-unstable-2025-08-03"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "libretro"; 16 16 repo = "mame"; 17 - rev = "d6423328d57857c05ef3513999fe4ff4917db197"; 18 - hash = "sha256-aKPyLszralaS6vIKv2RjJrVOJMIVXDx6W6cRAI6o2EM="; 17 + rev = "9c05f5b1ed748394cc8ef83a77873c6c9ab9a6a5"; 18 + hash = "sha256-b/Qwto3draMZOD7a6IHxQwQmaKf11v/r/sOS2oCrGVg="; 19 19 fetchSubmodules = true; 20 20 }; 21 21
+3 -3
pkgs/applications/emulators/libretro/cores/vice.nix
··· 6 6 }: 7 7 mkLibretroCore { 8 8 core = "vice-${type}"; 9 - version = "0-unstable-2025-07-19"; 9 + version = "0-unstable-2025-07-30"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "libretro"; 13 13 repo = "vice-libretro"; 14 - rev = "d545628dfacc90c4124381f254c693ec92f6cb7e"; 15 - hash = "sha256-l3FLtD+MBP8hCikHlbNsoYt+8ASb2zW+K52/nRIpfCs="; 14 + rev = "e9f8ac034ddef3025f0567768f7af8219f7cfdb8"; 15 + hash = "sha256-Rut9NyBF0yPFDYtFKzvSESaZL6CFhfcw6OFIHMeuzHk="; 16 16 }; 17 17 18 18 makefile = "Makefile";
+7 -7
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 480 480 "vendorHash": "sha256-ZbU2z7qUHPR7vDSflesSjgK7x3LYXVe/gnVsy19q6Bs=" 481 481 }, 482 482 "fortios": { 483 - "hash": "sha256-N1GJNlvoy9TfI7S7TTnQyQkBdKz94cRT2Xza+gb7etw=", 483 + "hash": "sha256-vQ5PYY2EJb7+O65YbyqmIPKiqsd9UysnZXYGzZvkTPQ=", 484 484 "homepage": "https://registry.terraform.io/providers/fortinetdev/fortios", 485 485 "owner": "fortinetdev", 486 486 "repo": "terraform-provider-fortios", 487 - "rev": "1.22.0", 487 + "rev": "1.22.1", 488 488 "spdx": "MPL-2.0", 489 489 "vendorHash": "sha256-9BBBmuj7rEX5h3LEZzw7C7AtwvJgo7yEGReQ38lfE6U=" 490 490 }, ··· 660 660 "vendorHash": null 661 661 }, 662 662 "ibm": { 663 - "hash": "sha256-cZ7j/bhXxhTIU7J9XB4M4N3zteRKybmOIEeVw9XM62o=", 663 + "hash": "sha256-541obBfBV/odhFvJISxeBtBmaLGoUB7rYymA0U7rhpY=", 664 664 "homepage": "https://registry.terraform.io/providers/IBM-Cloud/ibm", 665 665 "owner": "IBM-Cloud", 666 666 "repo": "terraform-provider-ibm", 667 - "rev": "v1.80.4", 667 + "rev": "v1.81.0", 668 668 "spdx": "MPL-2.0", 669 - "vendorHash": "sha256-lxd5op9QETBR7Q8ndgvYyYBy9URu16+DmtnFydpy3EA=" 669 + "vendorHash": "sha256-cWfISNNeVPb6BU2V3sLbvlnFKzf3fVniV5Lu1Kpb9f0=" 670 670 }, 671 671 "icinga2": { 672 672 "hash": "sha256-Y/Oq0aTzP+oSKPhHiHY9Leal4HJJm7TNDpcdqkUsCmk=", ··· 931 931 "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" 932 932 }, 933 933 "oci": { 934 - "hash": "sha256-xdVHJWEvap6Bp/r5hz/113kJF6SexsCROFkQgRTJgYA=", 934 + "hash": "sha256-bfe55ApaalhJpQtkl8YD9k5U7uyuqMuzOcM/ksBRglw=", 935 935 "homepage": "https://registry.terraform.io/providers/oracle/oci", 936 936 "owner": "oracle", 937 937 "repo": "terraform-provider-oci", 938 - "rev": "v7.11.0", 938 + "rev": "v7.12.0", 939 939 "spdx": "MPL-2.0", 940 940 "vendorHash": null 941 941 },
+2 -2
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix
··· 42 42 43 43 stdenv.mkDerivation (finalAttrs: { 44 44 pname = "telegram-desktop-unwrapped"; 45 - version = "5.16.4"; 45 + version = "6.0.2"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "telegramdesktop"; 49 49 repo = "tdesktop"; 50 50 rev = "v${finalAttrs.version}"; 51 51 fetchSubmodules = true; 52 - hash = "sha256-yU2Ai2JgxDlaTK5GsL+yWkwtFbk14tPRAj1Rdt+gmmQ="; 52 + hash = "sha256-l6i5ml4dCvJ5QJShK9jacJZlEujm1ObCFGa9VJ1y2zE="; 53 53 }; 54 54 55 55 nativeBuildInputs = [
+7 -10
pkgs/applications/version-management/git-archive-all/default.nix pkgs/by-name/gi/git-archive-all/package.nix
··· 1 1 { 2 2 lib, 3 - buildPythonApplication, 3 + python3Packages, 4 4 fetchFromGitHub, 5 5 git, 6 - pytestCheckHook, 7 - pytest-cov-stub, 8 - pytest-mock, 9 6 }: 10 7 11 - buildPythonApplication rec { 8 + python3Packages.buildPythonApplication rec { 12 9 pname = "git-archive-all"; 13 10 version = "1.23.1"; 14 11 format = "setuptools"; ··· 16 13 src = fetchFromGitHub { 17 14 owner = "Kentzo"; 18 15 repo = "git-archive-all"; 19 - rev = version; 16 + tag = version; 20 17 hash = "sha256-fIPjggOx+CEorj1bazz8s81ZdppkTL0OlA5tRqCYZyc="; 21 18 }; 22 19 ··· 40 37 git 41 38 ]; 42 39 43 - checkInputs = [ 40 + checkInputs = with python3Packages; [ 44 41 pytestCheckHook 45 42 pytest-cov-stub 46 43 pytest-mock ··· 52 49 export HOME="$(mktemp -d)" 53 50 ''; 54 51 55 - meta = with lib; { 52 + meta = { 56 53 description = "Archive a repository with all its submodules"; 57 54 longDescription = '' 58 55 A python script wrapper for git-archive that archives a git superproject 59 56 and its submodules, if it has any. Takes into account .gitattributes 60 57 ''; 61 58 homepage = "https://github.com/Kentzo/git-archive-all"; 62 - license = licenses.mit; 63 - maintainers = with maintainers; [ fgaz ]; 59 + license = lib.licenses.mit; 60 + maintainers = with lib.maintainers; [ fgaz ]; 64 61 mainProgram = "git-archive-all"; 65 62 }; 66 63 }
+5 -5
pkgs/applications/version-management/git-imerge/default.nix pkgs/by-name/gi/git-imerge/package.nix
··· 1 1 { 2 2 lib, 3 - buildPythonApplication, 3 + python3Packages, 4 4 fetchPypi, 5 5 installShellFiles, 6 6 }: 7 7 8 - buildPythonApplication rec { 8 + python3Packages.buildPythonApplication rec { 9 9 pname = "git-imerge"; 10 10 version = "1.2.0"; 11 11 format = "setuptools"; ··· 21 21 installShellCompletion --bash completions/git-imerge 22 22 ''; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 homepage = "https://github.com/mhagger/git-imerge"; 26 26 description = "Perform a merge between two branches incrementally"; 27 - license = licenses.gpl2Plus; 28 - maintainers = [ ]; 27 + license = lib.licenses.gpl2Plus; 28 + maintainers = with lib.maintainers; [ ]; 29 29 mainProgram = "git-imerge"; 30 30 }; 31 31 }
+5 -5
pkgs/applications/version-management/git-publish/default.nix pkgs/by-name/gi/git-publish/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - python, 4 + python3, 5 5 perl, 6 6 fetchFromGitHub, 7 7 installShellFiles, 8 8 }: 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "git-publish"; 11 11 version = "1.8.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "stefanha"; 15 15 repo = "git-publish"; 16 - rev = "v${version}"; 16 + tag = "v${finalAttrs.version}"; 17 17 hash = "sha256-jjpbr+ZqG4U8/z0PurnXR+IUKQkG3QB8YqhDkH8uu2Y="; 18 18 }; 19 19 ··· 21 21 perl 22 22 installShellFiles 23 23 ]; 24 - buildInputs = [ python ]; 24 + buildInputs = [ python3 ]; 25 25 26 26 installPhase = '' 27 27 runHook preInstall ··· 40 40 homepage = "https://github.com/stefanha/git-publish"; 41 41 mainProgram = "git-publish"; 42 42 }; 43 - } 43 + })
-39
pkgs/applications/version-management/git-repo-updater/default.nix
··· 1 - { 2 - lib, 3 - buildPythonApplication, 4 - hatchling, 5 - colorama, 6 - fetchPypi, 7 - gitpython, 8 - }: 9 - 10 - buildPythonApplication rec { 11 - pname = "gitup"; 12 - version = "0.5.2"; 13 - pyproject = true; 14 - 15 - src = fetchPypi { 16 - inherit pname version; 17 - sha256 = "sha256-51DWPJ9JOMrRdWGaiiL4qzo4VFFeT1rG5yyI6Ej+ZRw="; 18 - }; 19 - 20 - build-system = [ hatchling ]; 21 - propagatedBuildInputs = [ 22 - colorama 23 - gitpython 24 - ]; 25 - 26 - # no tests 27 - doCheck = false; 28 - 29 - meta = with lib; { 30 - description = "Easily update multiple Git repositories at once"; 31 - homepage = "https://github.com/earwig/git-repo-updater"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ 34 - bdesham 35 - artturin 36 - ]; 37 - mainProgram = "gitup"; 38 - }; 39 - }
+8 -11
pkgs/applications/version-management/git-review/default.nix pkgs/by-name/gi/git-review/package.nix
··· 1 1 { 2 2 lib, 3 - buildPythonApplication, 3 + python3Packages, 4 4 fetchgit, 5 - pbr, 6 - requests, 7 - setuptools, 8 5 gitUpdater, 9 6 }: 10 7 11 - buildPythonApplication rec { 8 + python3Packages.buildPythonApplication rec { 12 9 pname = "git-review"; 13 10 version = "2.5.0"; 14 11 format = "setuptools"; 15 12 16 - # Manually set version because prb wants to get it from the git 13 + # Manually set version because pbr wants to get it from the git 17 14 # upstream repository (and we are installing from tarball instead) 18 15 PBR_VERSION = version; 19 16 ··· 29 26 "man" 30 27 ]; 31 28 32 - nativeBuildInputs = [ 29 + nativeBuildInputs = with python3Packages; [ 33 30 pbr 34 31 ]; 35 32 36 - propagatedBuildInputs = [ 33 + dependencies = with python3Packages; [ 37 34 requests 38 35 setuptools # implicit dependency, used to get package version through pkg_resources 39 36 ]; ··· 47 44 48 45 passthru.updateScript = gitUpdater { }; 49 46 50 - meta = with lib; { 47 + meta = { 51 48 description = "Tool to submit code to Gerrit"; 52 49 homepage = "https://opendev.org/opendev/git-review"; 53 50 changelog = "https://docs.opendev.org/opendev/git-review/latest/releasenotes.html#relnotes-${version}"; 54 - license = licenses.asl20; 55 - maintainers = with maintainers; [ kira-bruneau ]; 51 + license = lib.licenses.asl20; 52 + maintainers = with lib.maintainers; [ kira-bruneau ]; 56 53 mainProgram = "git-review"; 57 54 }; 58 55 }
+2 -2
pkgs/applications/version-management/pass-git-helper/default.nix
··· 11 11 12 12 buildPythonApplication rec { 13 13 pname = "pass-git-helper"; 14 - version = "3.3.0"; 14 + version = "4.0.0"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "languitar"; 19 19 repo = "pass-git-helper"; 20 20 tag = "v${version}"; 21 - sha256 = "sha256-Y+Y/WcVY5XrxhLoixWwsi9TMkWsJ+jXbs1rZuzo3MFo="; 21 + sha256 = "sha256-SAMndgcxBa7wymXbOwRGcoogFfzpFFIZ0tF4NSCXpjw="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+13 -1
pkgs/build-support/fetchurl/default.nix
··· 192 192 } 193 193 else 194 194 throw "fetchurl requires a hash for fixed-output derivation: ${lib.generators.toPretty urls_}"; 195 + 196 + resolvedUrl = 197 + let 198 + mirrorSplit = lib.match "mirror://([[:alpha:]]+)/(.+)" url; 199 + mirrorName = lib.head mirrorSplit; 200 + mirrorList = 201 + if lib.hasAttr mirrorName mirrors then 202 + mirrors."${mirrorName}" 203 + else 204 + throw "unknown mirror:// site ${mirrorName}"; 205 + in 206 + if mirrorName == null then url else "${lib.head mirrorList}${lib.elemAt mirrorSplit 1}"; 195 207 in 196 208 197 209 assert ··· 279 291 280 292 inherit meta; 281 293 passthru = { 282 - inherit url; 294 + inherit url resolvedUrl; 283 295 } 284 296 // passthru; 285 297 }
+2 -13
pkgs/by-name/_6/_64gram/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 telegram-desktop, 7 6 alsa-lib, 8 7 jemalloc, ··· 16 15 inherit withWebkit; 17 16 unwrapped = telegram-desktop.unwrapped.overrideAttrs (old: rec { 18 17 pname = "64gram-unwrapped"; 19 - version = "1.1.58"; 18 + version = "1.1.77"; 20 19 21 20 src = fetchFromGitHub { 22 21 owner = "TDesktop-x64"; 23 22 repo = "tdesktop"; 24 23 tag = "v${version}"; 25 - hash = "sha256-RHybrvm5p8BUt5StT/NuR76f2y1CCICirTMjdeRLtkY="; 24 + hash = "sha256-qpL/OCcFi9WRfFhfDLbaHzybTBG5WmcV1I+jsFJISYM="; 26 25 fetchSubmodules = true; 27 26 }; 28 - 29 - patches = [ 30 - (fetchpatch { 31 - # https://github.com/desktop-app/lib_base/pull/268 32 - url = "https://github.com/desktop-app/lib_base/commit/c952da37294b958e896b27528e7834f0892faa0a.patch"; 33 - extraPrefix = "Telegram/lib_base/"; 34 - stripLen = 1; 35 - hash = "sha256-xiq8WLAiSZwpvdyK5JbRAdQ9us93+9oMmeMBqVb1TbI="; 36 - }) 37 - ]; 38 27 39 28 buildInputs = (old.buildInputs or [ ]) ++ [ 40 29 alsa-lib
+2 -2
pkgs/by-name/al/alibuild/package.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "alibuild"; 9 - version = "1.17.21"; 9 + version = "1.17.26"; 10 10 pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-bUZJs1FnKbPCQYCURynN2L/6qu1w80aMxnWL4oYEJgI="; 14 + hash = "sha256-Adiz+vIquMXWgwGSGwuQlVHiMaQhJiNAoAq5K8Ra4bc="; 15 15 }; 16 16 17 17 build-system = with python3Packages; [
+2 -2
pkgs/by-name/al/alt-tab-macos/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "alt-tab-macos"; 11 - version = "7.25.0"; 11 + version = "7.26.0"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/lwouis/alt-tab-macos/releases/download/v${finalAttrs.version}/AltTab-${finalAttrs.version}.zip"; 15 - hash = "sha256-e13en0fQHO0i49gP1zU6ms9TDMAwo1qsubsTi/DdIUo="; 15 + hash = "sha256-tDy+GFZw9hD2kelPOJioRvcmbPZ9bQu+IRDBEOamsJs="; 16 16 }; 17 17 18 18 sourceRoot = ".";
+16
pkgs/by-name/an/angle/fix-uninitialized-const-pointer-error-001.patch
··· 1 + diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn 2 + index 0c04c9036..1f32ec562 100644 3 + --- a/build/config/compiler/BUILD.gn 4 + +++ b/build/config/compiler/BUILD.gn 5 + @@ -1992,6 +1992,11 @@ config("tot_warnings") { 6 + "-Wno-character-conversion", 7 + ] 8 + } 9 + + 10 + + cflags += [ 11 + + # TODO(crbug.com/432275627): Fix and re-enable. 12 + + "-Wno-uninitialized-const-pointer" 13 + + ] 14 + } 15 + 16 + # default_warnings ------------------------------------------------------------
+522
pkgs/by-name/an/angle/info.json
··· 1 + { 2 + "src/build": { 3 + "args": { 4 + "hash": "sha256-dF/oqsbgJ+rqu+4G5s5/h77tByKaejj0DD+Yj3HG9r0=", 5 + "rev": "169fcf699b64d2d5e75a391beaec8a7ad6e41a7f", 6 + "url": "https://chromium.googlesource.com/chromium/src/build.git" 7 + }, 8 + "fetcher": "fetchFromGitiles" 9 + }, 10 + "src/buildtools": { 11 + "args": { 12 + "hash": "sha256-Oc3PLsNSY5feY+qGZgXWv6GlW07tk3S64xwkErueY6Y=", 13 + "rev": "5b7491dfe58d387aaf1391749afdfbaa19dcbb89", 14 + "url": "https://chromium.googlesource.com/chromium/src/buildtools.git" 15 + }, 16 + "fetcher": "fetchFromGitiles" 17 + }, 18 + "src": { 19 + "args": { 20 + "hash": "sha256-2KV5vzBbn27PfxwtVCLgoEdxGrd3GiDiiqffWGv16MM=", 21 + "rev": "7ab02e1d49a649adaba62b8a7fdfabf8144b313f", 22 + "url": "https://chromium.googlesource.com/angle/angle" 23 + }, 24 + "fetcher": "fetchFromGitiles" 25 + }, 26 + "src/testing": { 27 + "args": { 28 + "hash": "sha256-q2eSRf9vO+MoQorl4ybMKcFLiE6qCklmO+63jdr1TV0=", 29 + "rev": "0d5210a4b1978e7e2c6b8623c719dff0a0994a8f", 30 + "url": "https://chromium.googlesource.com/chromium/src/testing" 31 + }, 32 + "fetcher": "fetchFromGitiles" 33 + }, 34 + "src/third_party/EGL-Registry/src": { 35 + "args": { 36 + "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=", 37 + "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071", 38 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry" 39 + }, 40 + "fetcher": "fetchFromGitiles" 41 + }, 42 + "src/third_party/OpenCL-CTS/src": { 43 + "args": { 44 + "hash": "sha256-/YmLOW0kcLWaJcUnX+x//R8pgy05YihZykkhKnbp25o=", 45 + "rev": "e0a31a03fc8f816d59fd8b3051ac6a61d3fa50c6", 46 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenCL-CTS" 47 + }, 48 + "fetcher": "fetchFromGitiles" 49 + }, 50 + "src/third_party/OpenCL-Docs/src": { 51 + "args": { 52 + "hash": "sha256-RnukrtXh8mAbskzNx99OjDzcFfQHl+Lq2OmPEZlu1Vo=", 53 + "rev": "774114e8761920b976d538d47fad8178d05984ec", 54 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenCL-Docs" 55 + }, 56 + "fetcher": "fetchFromGitiles" 57 + }, 58 + "src/third_party/OpenCL-ICD-Loader/src": { 59 + "args": { 60 + "hash": "sha256-JJgTD8fD3TNCIq16bfg+nTaVs17vKFNShCn6F4ermCA=", 61 + "rev": "9b5e3849b49a1448996c8b96ba086cd774d987db", 62 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenCL-ICD-Loader" 63 + }, 64 + "fetcher": "fetchFromGitiles" 65 + }, 66 + "src/third_party/OpenGL-Registry/src": { 67 + "args": { 68 + "hash": "sha256-RdGIm0thB10DvyFYnYgTkUU8LgTLPfIgyfEgua4FJYE=", 69 + "rev": "200cea4030cb49d3e40677379e6368a5f0e8c27b", 70 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry" 71 + }, 72 + "fetcher": "fetchFromGitiles" 73 + }, 74 + "src/third_party/Python-Markdown": { 75 + "args": { 76 + "hash": "sha256-qvtPcNJ0Pz1oCqZqrdm/TCQ+QBwDZjuWWvEGftXAPW8=", 77 + "rev": "0f4473546172a64636f5d841410c564c0edad625", 78 + "url": "https://chromium.googlesource.com/chromium/src/third_party/Python-Markdown" 79 + }, 80 + "fetcher": "fetchFromGitiles" 81 + }, 82 + "src/third_party/SwiftShader": { 83 + "args": { 84 + "hash": "sha256-kfY/I2V3t52wWrT8CU9TK3EhZP/Cw5sd/wF9dMGpHBI=", 85 + "rev": "0ce9bc68d3fc995f76dcab4771c26471100ce759", 86 + "url": "https://swiftshader.googlesource.com/SwiftShader" 87 + }, 88 + "fetcher": "fetchFromGitiles" 89 + }, 90 + "src/third_party/VK-GL-CTS/src": { 91 + "args": { 92 + "hash": "sha256-fl3yXkdi1KqrrmHB9k+l/eaINuFHgruUL6MB/9QXvhE=", 93 + "rev": "4c617fa74b67a177c7bde5f48c73f5a5509121ed", 94 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS" 95 + }, 96 + "fetcher": "fetchFromGitiles" 97 + }, 98 + "src/third_party/abseil-cpp": { 99 + "args": { 100 + "hash": "sha256-0ztP0QhEnChkGOXbSP3T4epbzzf/T6POfohe58sFTwE=", 101 + "rev": "e3d58ba1a2a04f85225c3c04fa4603bb64399b2c", 102 + "url": "https://chromium.googlesource.com/chromium/src/third_party/abseil-cpp" 103 + }, 104 + "fetcher": "fetchFromGitiles" 105 + }, 106 + "src/third_party/astc-encoder/src": { 107 + "args": { 108 + "hash": "sha256-rCyi5Nla2IXsLD+rLMTN1h3B9umlNN0epZmPi/IFHPQ=", 109 + "rev": "2319d9c4d4af53a7fc7c52985e264ce6e8a02a9b", 110 + "url": "https://chromium.googlesource.com/external/github.com/ARM-software/astc-encoder" 111 + }, 112 + "fetcher": "fetchFromGitiles" 113 + }, 114 + "src/third_party/catapult": { 115 + "args": { 116 + "hash": "sha256-GlcGCmcQrA/YawQDFs8QB4GKZIPyBNiSgwm45LFg+go=", 117 + "rev": "a03b70978cc52840b549947f0fb165f03764c700", 118 + "url": "https://chromium.googlesource.com/catapult.git" 119 + }, 120 + "fetcher": "fetchFromGitiles" 121 + }, 122 + "src/third_party/cherry": { 123 + "args": { 124 + "hash": "sha256-x41m6HooD57wTDne58/sRK5QJvvOYfRWgdrwuw9tQyM=", 125 + "rev": "4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc", 126 + "url": "https://android.googlesource.com/platform/external/cherry" 127 + }, 128 + "fetcher": "fetchFromGitiles" 129 + }, 130 + "src/third_party/clang-format/script": { 131 + "args": { 132 + "hash": "sha256-d9uweklBffiuCWEb03ti1eFLnMac2qRtvggzXY1n/RU=", 133 + "rev": "37f6e68a107df43b7d7e044fd36a13cbae3413f2", 134 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git" 135 + }, 136 + "fetcher": "fetchFromGitiles" 137 + }, 138 + "src/third_party/clspv/src": { 139 + "args": { 140 + "hash": "sha256-OYD/74HVwg5o910luPVB0Benj1nNZ1eGXijoqHy/OH8=", 141 + "rev": "60f822e8123ca414dddc0e0f944440c99cb3c04d", 142 + "url": "https://chromium.googlesource.com/external/github.com/google/clspv" 143 + }, 144 + "fetcher": "fetchFromGitiles" 145 + }, 146 + "src/third_party/dawn": { 147 + "args": { 148 + "hash": "sha256-Xc86K5H4kNe9vtqQAW6y/iBGgdrK9qxT1Z8/gGkSEvQ=", 149 + "rev": "7a8946456d4957dedd0137278f2198e02066b319", 150 + "url": "https://dawn.googlesource.com/dawn.git" 151 + }, 152 + "fetcher": "fetchFromGitiles" 153 + }, 154 + "src/third_party/dawn/third_party/dxc": { 155 + "args": { 156 + "hash": "sha256-sUSQTOi0EuIHX9h27RXb5HnbcdfkG/U1K6EbBdjSto8=", 157 + "rev": "0a1143572d107c8b6980df092b84a79190ec1fbd", 158 + "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler" 159 + }, 160 + "fetcher": "fetchFromGitiles" 161 + }, 162 + "src/third_party/dawn/third_party/dxheaders": { 163 + "args": { 164 + "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=", 165 + "rev": "980971e835876dc0cde415e8f9bc646e64667bf7", 166 + "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers" 167 + }, 168 + "fetcher": "fetchFromGitiles" 169 + }, 170 + "src/third_party/dawn/third_party/glfw": { 171 + "args": { 172 + "hash": "sha256-E1zXIDiw87badrLOZTvV+Wh9NZHu51nb70ZK9vlAlqE=", 173 + "rev": "b35641f4a3c62aa86a0b3c983d163bc0fe36026d", 174 + "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw" 175 + }, 176 + "fetcher": "fetchFromGitiles" 177 + }, 178 + "src/third_party/dawn/third_party/khronos/EGL-Registry": { 179 + "args": { 180 + "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=", 181 + "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071", 182 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry" 183 + }, 184 + "fetcher": "fetchFromGitiles" 185 + }, 186 + "src/third_party/dawn/third_party/khronos/OpenGL-Registry": { 187 + "args": { 188 + "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=", 189 + "rev": "5bae8738b23d06968e7c3a41308568120943ae77", 190 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry" 191 + }, 192 + "fetcher": "fetchFromGitiles" 193 + }, 194 + "src/third_party/depot_tools": { 195 + "args": { 196 + "hash": "sha256-GcBMHMvjSpKPoE8RK5xatfWT5BWPkFFUEkZpSeAcqWA=", 197 + "rev": "8f878438075a8d5d76f57bd10ab866d58d706319", 198 + "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git" 199 + }, 200 + "fetcher": "fetchFromGitiles" 201 + }, 202 + "src/third_party/glmark2/src": { 203 + "args": { 204 + "hash": "sha256-VebUALLFKwEa4+oE+jF8mBSzhJd6aflphPmcK1Em8bw=", 205 + "rev": "6edcf02205fd1e8979dc3f3964257a81959b80c8", 206 + "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2" 207 + }, 208 + "fetcher": "fetchFromGitiles" 209 + }, 210 + "src/third_party/glslang/src": { 211 + "args": { 212 + "hash": "sha256-kfboAzNtplxcedYVt2F10Iqfp404amk/JkFt76gtuk0=", 213 + "rev": "21b4e37133868b3a50ef15fc027ecd6d3a52c875", 214 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang" 215 + }, 216 + "fetcher": "fetchFromGitiles" 217 + }, 218 + "src/third_party/googletest": { 219 + "args": { 220 + "hash": "sha256-88lAwz2c3HgFdO1tmPrp/StXfSSAZnvUAUgaTcwdFQA=", 221 + "rev": "17bbed2084d3127bd7bcd27283f18d7a5861bea8", 222 + "url": "https://chromium.googlesource.com/chromium/src/third_party/googletest" 223 + }, 224 + "fetcher": "fetchFromGitiles" 225 + }, 226 + "src/third_party/googletest/src": { 227 + "args": { 228 + "hash": "sha256-VuOfUPwl3QHtxjGfWq2tjObutncRoOjEJoY1ET+4pNI=", 229 + "rev": "2d924d7a971e9667d76ad09727fb2402b4f8a1e3", 230 + "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git" 231 + }, 232 + "fetcher": "fetchFromGitiles" 233 + }, 234 + "src/third_party/jinja2": { 235 + "args": { 236 + "hash": "sha256-RhNDCE9d9ik/YNF0CSrSoBvpeGi04y3ChIY2c66lJpo=", 237 + "rev": "c3027d884967773057bf74b957e3fea87e5df4d7", 238 + "url": "https://chromium.googlesource.com/chromium/src/third_party/jinja2" 239 + }, 240 + "fetcher": "fetchFromGitiles" 241 + }, 242 + "src/third_party/jsoncpp": { 243 + "args": { 244 + "hash": "sha256-QdWSlzvgtOkr2dRRhkDz64InkDsVOXx43q9ABzrdFMo=", 245 + "rev": "f62d44704b4da6014aa231cfc116e7fd29617d2a", 246 + "url": "https://chromium.googlesource.com/chromium/src/third_party/jsoncpp" 247 + }, 248 + "fetcher": "fetchFromGitiles" 249 + }, 250 + "src/third_party/jsoncpp/source": { 251 + "args": { 252 + "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=", 253 + "rev": "42e892d96e47b1f6e29844cc705e148ec4856448", 254 + "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git" 255 + }, 256 + "fetcher": "fetchFromGitiles" 257 + }, 258 + "src/third_party/libc++/src": { 259 + "args": { 260 + "hash": "sha256-WbEMS4wowBw1j7UT/5G5DSmgy5ldmdjxMszYtobr9UI=", 261 + "rev": "2c359c239b138a20a03f798e47889448ef131c22", 262 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git" 263 + }, 264 + "fetcher": "fetchFromGitiles" 265 + }, 266 + "src/third_party/libc++abi/src": { 267 + "args": { 268 + "hash": "sha256-WIJAAHO+n6C5N7nyw8m8xGXr/OXvRGfsScBBdUyjxyg=", 269 + "rev": "e44c3c4560f1742744ef3f9fb4217a5f26ebca1b", 270 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git" 271 + }, 272 + "fetcher": "fetchFromGitiles" 273 + }, 274 + "src/third_party/libdrm/src": { 275 + "args": { 276 + "hash": "sha256-woSYEDUfcEBpYOYnli13wLMt754A7KnUbmTEcFQdFGw=", 277 + "rev": "ad78bb591d02162d3b90890aa4d0a238b2a37cde", 278 + "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git" 279 + }, 280 + "fetcher": "fetchFromGitiles" 281 + }, 282 + "src/third_party/libjpeg_turbo": { 283 + "args": { 284 + "hash": "sha256-Ig+tmprZDvlf/M72/DTar2pbxat9ZElgSqdXdoM0lPs=", 285 + "rev": "e14cbfaa85529d47f9f55b0f104a579c1061f9ad", 286 + "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git" 287 + }, 288 + "fetcher": "fetchFromGitiles" 289 + }, 290 + "src/third_party/libpng/src": { 291 + "args": { 292 + "hash": "sha256-ATde609XPHqSrT3www6M+pA1qd69hVhhW6wSMCIrJnM=", 293 + "rev": "8cc222cd3e79fa5190f3aa039a03a4cbea6cfbe7", 294 + "url": "https://android.googlesource.com/platform/external/libpng" 295 + }, 296 + "fetcher": "fetchFromGitiles" 297 + }, 298 + "src/third_party/libunwind/src": { 299 + "args": { 300 + "hash": "sha256-hpOxKXZkZEWNptp31B1DZ8V9E7LsRbbYdPdUD7EYA+8=", 301 + "rev": "5bbf35ae6801f579c523893176789774c0726e22", 302 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git" 303 + }, 304 + "fetcher": "fetchFromGitiles" 305 + }, 306 + "src/third_party/llvm-libc/src": { 307 + "args": { 308 + "hash": "sha256-tZDU/6mtjT8ZVIzahA4q9fqs5a2IYAGw/m9jO99tDcI=", 309 + "rev": "3dc83eebbdc6adf43831985d410fb451d385a5b1", 310 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libc.git" 311 + }, 312 + "fetcher": "fetchFromGitiles" 313 + }, 314 + "src/third_party/llvm/src": { 315 + "args": { 316 + "hash": "sha256-Oc8TvPj4hRrA7Dj8s7qx2bscLeKxZ8wpWtFfB9C6XF4=", 317 + "rev": "1fd8d3fea53e6e4573cdce55bd38ef0a7813a442", 318 + "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project" 319 + }, 320 + "fetcher": "fetchFromGitiles" 321 + }, 322 + "src/third_party/lunarg-vulkantools/src": { 323 + "args": { 324 + "hash": "sha256-eYqBAet7SnTjouzEkJNr/eaMg+PxRAz9arZpAyeItM0=", 325 + "rev": "da60ac4327af194dfa773a07db6cd5d5aaa6848d", 326 + "url": "https://chromium.googlesource.com/external/github.com/LunarG/VulkanTools" 327 + }, 328 + "fetcher": "fetchFromGitiles" 329 + }, 330 + "src/third_party/markupsafe": { 331 + "args": { 332 + "hash": "sha256-mYsC/xZHpAbP/US2VRAfCYm0JeJ03is38S9s2KuA9PI=", 333 + "rev": "4256084ae14175d38a3ff7d739dca83ae49ccec6", 334 + "url": "https://chromium.googlesource.com/chromium/src/third_party/markupsafe" 335 + }, 336 + "fetcher": "fetchFromGitiles" 337 + }, 338 + "src/third_party/nasm": { 339 + "args": { 340 + "hash": "sha256-TxzAcp+CoKnnM0lCGjm+L3h6M30vYHjM07vW6zUe/vY=", 341 + "rev": "e2c93c34982b286b27ce8b56dd7159e0b90869a2", 342 + "url": "https://chromium.googlesource.com/chromium/deps/nasm.git" 343 + }, 344 + "fetcher": "fetchFromGitiles" 345 + }, 346 + "src/third_party/protobuf": { 347 + "args": { 348 + "hash": "sha256-JZU7ZqE8eE2M1urS4H6HM/jwEmjqp0XLEqPmbzE7dO4=", 349 + "rev": "e0f7527112a9310b608afa49affe72e810697dce", 350 + "url": "https://chromium.googlesource.com/chromium/src/third_party/protobuf" 351 + }, 352 + "fetcher": "fetchFromGitiles" 353 + }, 354 + "src/third_party/rapidjson/src": { 355 + "args": { 356 + "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=", 357 + "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f", 358 + "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson" 359 + }, 360 + "fetcher": "fetchFromGitiles" 361 + }, 362 + "src/third_party/rust": { 363 + "args": { 364 + "hash": "sha256-VXXPaj8XiSKbGa7eU5daq1AvwfjN7hhbpnHx/WL8OZk=", 365 + "rev": "274de19b1d9b411b98b81672d1e300c86aaa2601", 366 + "url": "https://chromium.googlesource.com/chromium/src/third_party/rust" 367 + }, 368 + "fetcher": "fetchFromGitiles" 369 + }, 370 + "src/third_party/spirv-cross/src": { 371 + "args": { 372 + "hash": "sha256-H43M9DXfEuyKuvo6rjb5k0KEbYOSFodbPJh8ZKY4PQg=", 373 + "rev": "b8fcf307f1f347089e3c46eb4451d27f32ebc8d3", 374 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross" 375 + }, 376 + "fetcher": "fetchFromGitiles" 377 + }, 378 + "src/third_party/spirv-headers/src": { 379 + "args": { 380 + "hash": "sha256-LRjMy9xtOErbJbMh+g2IKXfmo/hWpegZM72F8E122oY=", 381 + "rev": "2a611a970fdbc41ac2e3e328802aed9985352dca", 382 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers" 383 + }, 384 + "fetcher": "fetchFromGitiles" 385 + }, 386 + "src/third_party/spirv-tools/src": { 387 + "args": { 388 + "hash": "sha256-EPD+1RX4lCulEua4WfLTIqlDGCnxDRnRcH2a+pSI6mk=", 389 + "rev": "108b19e5c6979f496deffad4acbe354237afa7d3", 390 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools" 391 + }, 392 + "fetcher": "fetchFromGitiles" 393 + }, 394 + "src/third_party/vulkan-deps": { 395 + "args": { 396 + "hash": "sha256-hXZs4L+XaHog/CyjX5WYP+2dl9WL3e/A8ql4xWEtwtI=", 397 + "rev": "317a1e4780ef130e7b92fc287cf390ac2aff0c22", 398 + "url": "https://chromium.googlesource.com/vulkan-deps" 399 + }, 400 + "fetcher": "fetchFromGitiles" 401 + }, 402 + "src/third_party/vulkan-headers/src": { 403 + "args": { 404 + "hash": "sha256-OorBl9vIN4DqVgT8ae+05yCLon7m0ixQczEzDlpwFRI=", 405 + "rev": "10739e8e00a7b6f74d22dd0a547f1406ff1f5eb9", 406 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers" 407 + }, 408 + "fetcher": "fetchFromGitiles" 409 + }, 410 + "src/third_party/vulkan-loader/src": { 411 + "args": { 412 + "hash": "sha256-j9LAqdwI3+D6CY6a6CcFK85Cd3xxdjnhLSycuqZDGN0=", 413 + "rev": "c8a2c8c9164a58ce71c1c77104e28e8de724539e", 414 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader" 415 + }, 416 + "fetcher": "fetchFromGitiles" 417 + }, 418 + "src/third_party/vulkan-tools/src": { 419 + "args": { 420 + "hash": "sha256-EqLG8kMQx6nHX9iZMrsu0fn1z4nY6TEQ/feTINNbUzQ=", 421 + "rev": "e3fc64396755191b3c51e5c57d0454872e7fa487", 422 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools" 423 + }, 424 + "fetcher": "fetchFromGitiles" 425 + }, 426 + "src/third_party/vulkan-utility-libraries/src": { 427 + "args": { 428 + "hash": "sha256-pQJln43t4U1VXJ2mpdRoUhOKyBTH0QePIMOy5f/0GXU=", 429 + "rev": "0f0babb553a60da5971d9f4d40cf720ce01602f1", 430 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries" 431 + }, 432 + "fetcher": "fetchFromGitiles" 433 + }, 434 + "src/third_party/vulkan-validation-layers/src": { 435 + "args": { 436 + "hash": "sha256-yGciJW5vKvxdybz5jDo7LSw9K0d+oKr7/Yg/fBRTd4A=", 437 + "rev": "89c6a9b6500e2e0bda127113bbfe1d70f1ab2d20", 438 + "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers" 439 + }, 440 + "fetcher": "fetchFromGitiles" 441 + }, 442 + "src/third_party/vulkan_memory_allocator": { 443 + "args": { 444 + "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=", 445 + "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21", 446 + "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator" 447 + }, 448 + "fetcher": "fetchFromGitiles" 449 + }, 450 + "src/third_party/zlib": { 451 + "args": { 452 + "hash": "sha256-MEUIIrlH4gBebO58sPhPLbRX+BeXo1SelJqhZAQk+wQ=", 453 + "rev": "4028ebf8710ee39d2286cb0f847f9b95c59f84d8", 454 + "url": "https://chromium.googlesource.com/chromium/src/third_party/zlib" 455 + }, 456 + "fetcher": "fetchFromGitiles" 457 + }, 458 + "src/tools/clang": { 459 + "args": { 460 + "hash": "sha256-3wLCPt0tqVVcojJWy7c1Z6a+b026kW6fha4Jg3ulScc=", 461 + "rev": "ae0ff7090810342e6c7c378521bd78e79ed63bad", 462 + "url": "https://chromium.googlesource.com/chromium/src/tools/clang.git" 463 + }, 464 + "fetcher": "fetchFromGitiles" 465 + }, 466 + "src/tools/mb": { 467 + "args": { 468 + "hash": "sha256-/hBZV38mn6/lj28AsJ0/SzcgaTJGH5IxoNXtJ8XhQVE=", 469 + "rev": "1c0b50128bb1eee3d40731733ecae62f0e3ee40a", 470 + "url": "https://chromium.googlesource.com/chromium/src/tools/mb" 471 + }, 472 + "fetcher": "fetchFromGitiles" 473 + }, 474 + "src/tools/md_browser": { 475 + "args": { 476 + "hash": "sha256-QJC7tI2CHE1Y9F42dgblPirUhS69s2P6qULrfDm2f7M=", 477 + "rev": "6cc8e58a83412dc31de6fb7614fadb0b51748d4b", 478 + "url": "https://chromium.googlesource.com/chromium/src/tools/md_browser" 479 + }, 480 + "fetcher": "fetchFromGitiles" 481 + }, 482 + "src/tools/memory": { 483 + "args": { 484 + "hash": "sha256-i5VVlfkKvymItH5S0d4eER+I6A4omMk3XrDNoGwnzmo=", 485 + "rev": "cc38b4b04fbf942926366f420c43afb9e9ab364b", 486 + "url": "https://chromium.googlesource.com/chromium/src/tools/memory" 487 + }, 488 + "fetcher": "fetchFromGitiles" 489 + }, 490 + "src/tools/perf": { 491 + "args": { 492 + "hash": "sha256-4qQcqlY1QcNk+wSL7on9Lc8101txQv3Usanprw/oVv4=", 493 + "rev": "bd0baf9e31a384c4ff99b8911be4c07772ad513c", 494 + "url": "https://chromium.googlesource.com/chromium/src/tools/perf" 495 + }, 496 + "fetcher": "fetchFromGitiles" 497 + }, 498 + "src/tools/protoc_wrapper": { 499 + "args": { 500 + "hash": "sha256-f8lpjbB7VnQQcDBSzxFbOroYjxprX+fU6fpl2Z3B3l8=", 501 + "rev": "502dcad5230ec1da544e7720b15d91782f040d9f", 502 + "url": "https://chromium.googlesource.com/chromium/src/tools/protoc_wrapper" 503 + }, 504 + "fetcher": "fetchFromGitiles" 505 + }, 506 + "src/tools/rust": { 507 + "args": { 508 + "hash": "sha256-ejYbEIlLpgdRedFVmZ9K8x3B//23BATw6w/n68mGBaI=", 509 + "rev": "6c0ba3465b64d460de7426b707dcc73939a2226f", 510 + "url": "https://chromium.googlesource.com/chromium/src/tools/rust.git" 511 + }, 512 + "fetcher": "fetchFromGitiles" 513 + }, 514 + "src/tools/valgrind": { 515 + "args": { 516 + "hash": "sha256-EBcH7f6lRPBYKX9NeaLShWPL1eeJhBDxJkR61OrFydU=", 517 + "rev": "5ba62550b2f3d4d97974ebcdb4f8462e4ba14af2", 518 + "url": "https://chromium.googlesource.com/chromium/src/tools/valgrind" 519 + }, 520 + "fetcher": "fetchFromGitiles" 521 + } 522 + }
+159
pkgs/by-name/an/angle/package.nix
··· 1 + { 2 + stdenv, 3 + gn, 4 + ninja, 5 + llvmPackages_21, 6 + gclient2nix, 7 + pkg-config, 8 + glib, 9 + python3, 10 + symlinkJoin, 11 + lib, 12 + xorg, 13 + wayland, 14 + pciutils, 15 + libGL, 16 + }: 17 + let 18 + llvmPackages = llvmPackages_21; 19 + llvmMajorVersion = lib.versions.major llvmPackages.llvm.version; 20 + arch = stdenv.hostPlatform.parsed.cpu.name; 21 + triplet = lib.getAttr arch { 22 + "x86_64" = "x86_64-unknown-linux-gnu"; 23 + "aarch64" = "aarch64-unknown-linux-gnu"; 24 + }; 25 + 26 + clang = symlinkJoin { 27 + name = "angle-clang-llvm-join"; 28 + paths = [ 29 + llvmPackages.llvm 30 + llvmPackages.clang 31 + ]; 32 + postBuild = '' 33 + mkdir -p $out/lib/clang/${llvmMajorVersion}/lib/ 34 + ln -s $out/resource-root/lib/linux \ 35 + $out/lib/clang/${llvmMajorVersion}/lib/${triplet} 36 + ''; 37 + }; 38 + in 39 + stdenv.mkDerivation (finalAttrs: { 40 + pname = "angle"; 41 + version = "7258"; 42 + 43 + gclientDeps = gclient2nix.importGclientDeps ./info.json; 44 + sourceRoot = "src"; 45 + strictDeps = true; 46 + 47 + nativeBuildInputs = [ 48 + gn 49 + ninja 50 + gclient2nix.gclientUnpackHook 51 + pkg-config 52 + python3 53 + llvmPackages.bintools 54 + ]; 55 + 56 + buildInputs = [ 57 + glib 58 + xorg.libxcb.dev 59 + xorg.libX11.dev 60 + xorg.libXext.dev 61 + xorg.libXi 62 + wayland.dev 63 + pciutils 64 + libGL 65 + ]; 66 + 67 + gnFlags = [ 68 + "is_debug=false" 69 + "use_sysroot=false" 70 + "clang_base_path=\"${clang}\"" 71 + "angle_build_tests=false" 72 + "concurrent_links=1" 73 + "use_custom_libcxx=true" 74 + "angle_enable_swiftshader=false" 75 + "angle_enable_wgpu=false" 76 + ]; 77 + 78 + patches = [ 79 + # https://issues.chromium.org/issues/432275627 80 + # https://chromium-review.googlesource.com/c/chromium/src/+/6761936/2/build/config/compiler/BUILD.gn 81 + ./fix-uninitialized-const-pointer-error-001.patch 82 + ]; 83 + 84 + postPatch = '' 85 + substituteInPlace build/config/clang/BUILD.gn \ 86 + --replace-fail \ 87 + "_dir = \"${triplet}\"" \ 88 + "_dir = \"${triplet}\" 89 + _suffix = \"-${arch}\"" 90 + 91 + cat > build/config/gclient_args.gni <<EOF 92 + # Generated from 'DEPS' 93 + checkout_angle_internal = false 94 + checkout_angle_mesa = false 95 + checkout_angle_restricted_traces = false 96 + generate_location_tags = false 97 + EOF 98 + ''; 99 + 100 + installPhase = '' 101 + runHook preInstallPhase 102 + 103 + install -v -m755 -D *.so *.so.1 -t "$out/lib" 104 + install -v -m755 -D \ 105 + angle_shader_translator \ 106 + gaussian_distribution_gentables \ 107 + -t "$out/bin" 108 + 109 + cp -rv ../../include "$out" 110 + 111 + mkdir -p $out/lib/pkgconfig 112 + 113 + cat > $out/lib/pkgconfig/angle.pc <<EOF 114 + prefix=${placeholder "out"} 115 + exec_prefix=''${prefix} 116 + libdir=''${prefix}/lib 117 + includedir=''${prefix}/include 118 + 119 + Name: angle 120 + Description: ${finalAttrs.meta.description} 121 + 122 + URL: ${finalAttrs.meta.homepage} 123 + Version: ${lib.versions.major finalAttrs.version} 124 + Libs: -L''${libdir} -l${ 125 + lib.concatStringsSep " -l" [ 126 + "EGL" 127 + "EGL_vulkan_secondaries" 128 + "GLESv1_CM" 129 + "GLESv2" 130 + "GLESv2_vulkan_secondaries" 131 + "GLESv2_with_capture" 132 + "VkICD_mock_icd" 133 + "feature_support" 134 + ] 135 + } 136 + Cflags: -I''${includedir} 137 + EOF 138 + 139 + runHook postInstallPhase 140 + ''; 141 + 142 + meta = { 143 + description = "Conformant OpenGL ES implementation for Windows, Mac, Linux, iOS and Android"; 144 + longDescription = '' 145 + The goal of ANGLE is to allow users of multiple operating systems 146 + to seamlessly run WebGL and other OpenGL ES content by translating 147 + OpenGL ES API calls to one of the hardware-supported APIs available 148 + for that platform. 149 + ''; 150 + homepage = "https://angleproject.org"; 151 + maintainers = with lib.maintainers; [ 152 + jess 153 + jk 154 + ]; 155 + license = lib.licenses.bsd3; 156 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 157 + broken = stdenv.hostPlatform.isDarwin; 158 + }; 159 + })
+3 -3
pkgs/by-name/ap/apko/package.nix
··· 11 11 12 12 buildGoModule (finalAttrs: { 13 13 pname = "apko"; 14 - version = "0.29.3"; 14 + version = "0.30.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "chainguard-dev"; 18 18 repo = "apko"; 19 19 tag = "v${finalAttrs.version}"; 20 - hash = "sha256-3BmWxHhpdkJ7Zyd+K+YS/u4cIiwPsNGaYNvb6ZrIaeQ="; 20 + hash = "sha256-5d/92BrrKfDGtIVp3AAg0cfKooaJH9YtDgmO635gZc4="; 21 21 # populate values that require us to use git. By doing this in postFetch we 22 22 # can delete .git afterwards and maintain better reproducibility of the src. 23 23 leaveDotGit = true; ··· 29 29 find "$out" -name .git -print0 | xargs -0 rm -rf 30 30 ''; 31 31 }; 32 - vendorHash = "sha256-gN8lAmLJmoGQA0l62d4EPx2w2SbhUwbNYhIcyAamaqU="; 32 + vendorHash = "sha256-jHvImL22IYaeYhhedN+C/AfJAFkCFN1UqKZOBsNhQnA="; 33 33 34 34 nativeBuildInputs = [ installShellFiles ]; 35 35
+2 -2
pkgs/by-name/ba/backblaze-b2/package.nix
··· 11 11 12 12 python3Packages.buildPythonApplication rec { 13 13 pname = "backblaze-b2"; 14 - version = "4.4.0"; 14 + version = "4.4.1"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "Backblaze"; 19 19 repo = "B2_Command_Line_Tool"; 20 20 tag = "v${version}"; 21 - hash = "sha256-SZQilulk+07Ua1n9EbalYyTo/3vxK3MILGkXVthLETw="; 21 + hash = "sha256-j+HlwFB9wTL5XNO/IBwBY+z3Qke/6LmLIFr9ZrMPZuA="; 22 22 }; 23 23 24 24 nativeBuildInputs = with python3Packages; [
+3 -3
pkgs/by-name/cy/cyme/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "cyme"; 15 - version = "2.2.3"; 15 + version = "2.2.4"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "tuna-f1sh"; 19 19 repo = "cyme"; 20 20 rev = "v${version}"; 21 - hash = "sha256-Zbb9CEsDtig9Nc6FUFZSdsfU7l6XHQvQK8asZ7O/Weo="; 21 + hash = "sha256-zwte2YzjEMW1wVti02tOa2IZMd2Z8amYUB9RHevx5bg="; 22 22 }; 23 23 24 - cargoHash = "sha256-HdlhsOctPxOanbPAIJnlUoY4QeIluVsJlPglFXHBpFY="; 24 + cargoHash = "sha256-wOOcIkEgyR5Af78uMuCksalVH8VPFXptg232It/ilXE="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+5 -3
pkgs/by-name/da/davinci-resolve/package.nix
··· 35 35 davinci = ( 36 36 stdenv.mkDerivation rec { 37 37 pname = "davinci-resolve${lib.optionalString studioVariant "-studio"}"; 38 - version = "20.0"; 38 + version = "20.0.1"; 39 39 40 40 nativeBuildInputs = [ 41 41 (appimage-run.override { buildFHSEnv = buildFHSEnvChroot; }) ··· 57 57 outputHashAlgo = "sha256"; 58 58 outputHash = 59 59 if studioVariant then 60 - "sha256-q0jfP/DtroK7Dzj/BiB1JmYPihCma/OgcGmQOE/uwGY=" 60 + "sha256-20ZmxkniX4rbKqxxjqGJOCSeZt6i+HN72Vm8HtsONUg=" 61 61 else 62 - "sha256-JM/V449KUEXuQmRpyQC2z9DRmID7hJ3Mnt5N6p/HOXA="; 62 + "sha256-ZbiQdsm0zoVe0Riw8K6ZBRKd+v73OdplS0Db7P1DE6E="; 63 63 64 64 impureEnvVars = lib.fetchers.proxyImpureEnvVars; 65 65 ··· 269 269 270 270 passthru = { 271 271 inherit davinci; 272 + } 273 + // lib.optionalAttrs (!studioVariant) { 272 274 updateScript = lib.getExe (writeShellApplication { 273 275 name = "update-davinci-resolve"; 274 276 runtimeInputs = [
+2 -2
pkgs/by-name/di/diffoscope/package.nix
··· 106 106 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 107 107 python.pkgs.buildPythonApplication rec { 108 108 pname = "diffoscope"; 109 - version = "302"; 109 + version = "303"; 110 110 pyproject = true; 111 111 112 112 src = fetchurl { 113 113 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 114 - hash = "sha256-PngiG+nPaPrGHt+uTeH7R+MlKjPXFxfkFiDo6+pssTw="; 114 + hash = "sha256-kalURmsdYl0HOnzAkJ6aGRvYcjnb8BeWimokmpqE+Ds="; 115 115 }; 116 116 117 117 outputs = [
+3 -3
pkgs/by-name/do/dotenvx/package.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "dotenvx"; 11 - version = "1.45.2"; 11 + version = "1.48.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dotenvx"; 15 15 repo = "dotenvx"; 16 16 tag = "v${version}"; 17 - hash = "sha256-43CfqPd3GzBAZ97IUSQuS96xOy34941wNcieKMoLZV4="; 17 + hash = "sha256-5clMrH9r7CltZ2oEfDvyubFroOq/YVRaPkBfRnMyHNc="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-bSOZWZ3CJl3tnjAFb7ozHmaBTOV9FS+t/+9DVoma4ag="; 20 + npmDepsHash = "sha256-O8w5gyG2PDUSGuAcSQ4ccvkYhb9pQL5NjWXjSoXk6gQ="; 21 21 22 22 dontNpmBuild = true; 23 23
+3 -3
pkgs/by-name/do/dotslash/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "dotslash"; 12 - version = "0.5.3"; 12 + version = "0.5.7"; 13 13 14 14 src = fetchCrate { 15 15 inherit pname version; 16 - hash = "sha256-csggbV5IyO9TlhN8S/E3LRfqqFJvj4cshByC6S7qpDk="; 16 + hash = "sha256-VFesGum2xjknUuCwIojntdst5dmhvZb78ejJ2OG1FVI="; 17 17 }; 18 18 19 - cargoHash = "sha256-FyFrKaV5itdr0HtE5Ize21mwCwHRTzmIt+kmB972s9M="; 19 + cargoHash = "sha256-+FWDeR4AcFSFz0gGQ8VMvX68/F0yEm25cNfHeedqsWE="; 20 20 doCheck = false; # http tests 21 21 22 22 passthru = {
+7 -4
pkgs/by-name/fe/ferron/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage (finalAttrs: { 12 12 pname = "ferron"; 13 - version = "1.3.4"; 13 + version = "1.3.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "ferronweb"; 17 17 repo = "ferron"; 18 18 tag = finalAttrs.version; 19 - hash = "sha256-kERR2wEKMjOIjcEYKzCyUFkEeOxDP4ypfs69kPWxQ9Y="; 19 + hash = "sha256-bBIhLkh9UV2MJKovQaFk3cC1rYafiyxknRlKWVQ5gwY="; 20 20 }; 21 21 22 - cargoHash = "sha256-+UJ+wF/U2T315E1T1QhG1cCV3DJ/tIXZ8O09pyrXRIU="; 22 + cargoHash = "sha256-xsJJglSq8hpWWi0zknPL03nle99GxznPI3HON2o8zco="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config ··· 48 48 homepage = "https://github.com/ferronweb/ferron"; 49 49 changelog = "https://github.com/ferronweb/ferron/releases/tag/${finalAttrs.version}"; 50 50 license = lib.licenses.mit; 51 - maintainers = with lib.maintainers; [ GaetanLepage ]; 51 + maintainers = with lib.maintainers; [ 52 + _0x4A6F 53 + GaetanLepage 54 + ]; 52 55 mainProgram = "ferron"; 53 56 }; 54 57 })
+3 -3
pkgs/by-name/fl/flood-for-transmission/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "flood-for-transmission"; 10 - version = "2024-11-16T12-26-17"; 10 + version = "2025-07-19T10-51-22"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "johman10"; 14 14 repo = "flood-for-transmission"; 15 15 tag = version; 16 - hash = "sha256-OED2Ypi1V+wwnJ5KFVRbJAyh/oTYs90E6uhSnSwJwJU="; 16 + hash = "sha256-2oHEVvZZcxH9RBKreaiwFKp7Iu5ijYdpXdgVknCxwKw="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-J3gRzvSXXyoS0OoLrTSV1vBSupFqky0Jt99nyz+hy1k="; 19 + npmDepsHash = "sha256-IUdsUGsm6yAbXqf4UGkz1VPa366TnWsTakkbywbLeTU="; 20 20 21 21 strictDeps = true; 22 22
+1 -1
pkgs/by-name/gc/gclient2nix/gclient2nix.py
··· 87 87 { 88 88 **{ 89 89 f"checkout_{platform}": platform == "linux" 90 - for platform in ["ios", "chromeos", "android", "mac", "win", "linux"] 90 + for platform in ["ios", "chromeos", "android", "mac", "win", "linux", "fuchsia"] 91 91 }, 92 92 **{ 93 93 f"checkout_{arch}": True
+2 -2
pkgs/by-name/ge/gearlever/package.nix
··· 23 23 24 24 python3Packages.buildPythonApplication rec { 25 25 pname = "gearlever"; 26 - version = "3.3.3"; 26 + version = "3.3.4"; 27 27 pyproject = false; # Built with meson 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "mijorus"; 31 31 repo = "gearlever"; 32 32 tag = version; 33 - hash = "sha256-IAvUKxXXdHntsksShiWyGuLbKOX+dHsKYQE1UBypV4A="; 33 + hash = "sha256-n7R4BiNxEy2uL6yg5h/L+l/EiQFTc5uND4ZVdERll08="; 34 34 }; 35 35 36 36 postPatch =
+20 -12
pkgs/by-name/gf/gftp/package.nix
··· 12 12 openssl, 13 13 pkg-config, 14 14 readline, 15 + nix-update-script, 16 + versionCheckHook, 15 17 }: 16 18 17 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 18 20 pname = "gftp"; 19 21 version = "2.9.1b"; 20 22 21 23 src = fetchFromGitHub { 22 24 owner = "masneyb"; 23 25 repo = "gftp"; 24 - rev = version; 26 + tag = finalAttrs.version; 25 27 hash = "sha256-0zdv2oYl24BXh61IGCWby/2CCkzNjLpDrAFc0J89Pw4="; 26 28 }; 27 29 28 - env.NIX_CFLAGS_COMPILE = toString [ 29 - "-Wno-incompatible-pointer-types" # https://github.com/masneyb/gftp/issues/178 30 - ]; 31 - 32 30 nativeBuildInputs = [ 33 31 autoconf 34 32 automake ··· 44 42 openssl 45 43 readline 46 44 ]; 45 + 46 + # https://github.com/masneyb/gftp/issues/178 47 + postPatch = '' 48 + substituteInPlace lib/gftp.h \ 49 + --replace-fail "size_t remote_addr_len" "socklen_t remote_addr_len" 50 + ''; 47 51 48 52 preConfigure = '' 49 53 ./autogen.sh ··· 51 55 52 56 hardeningDisable = [ "format" ]; 53 57 54 - meta = with lib; { 58 + doInstallCheck = true; 59 + nativeInstallCheckInputs = [ versionCheckHook ]; 60 + 61 + passthru.updateScript = nix-update-script { }; 62 + 63 + meta = { 55 64 homepage = "https://github.com/masneyb/gftp"; 56 65 description = "GTK-based multithreaded FTP client for *nix-based machines"; 57 - license = licenses.gpl2Plus; 58 - maintainers = with maintainers; [ ]; 59 - platforms = platforms.unix; 66 + license = lib.licenses.gpl2Plus; 67 + maintainers = [ lib.maintainers.haylin ]; 68 + platforms = lib.platforms.unix; 60 69 }; 61 - } 62 - # TODO: report the hardeningDisable to upstream 70 + })
+36
pkgs/by-name/gi/git-repo-updater/package.nix
··· 1 + { 2 + lib, 3 + python3Packages, 4 + fetchPypi, 5 + }: 6 + 7 + python3Packages.buildPythonApplication rec { 8 + pname = "gitup"; 9 + version = "0.5.2"; 10 + pyproject = true; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-51DWPJ9JOMrRdWGaiiL4qzo4VFFeT1rG5yyI6Ej+ZRw="; 15 + }; 16 + 17 + build-system = with python3Packages; [ hatchling ]; 18 + dependencies = with python3Packages; [ 19 + colorama 20 + gitpython 21 + ]; 22 + 23 + # no tests 24 + doCheck = false; 25 + 26 + meta = { 27 + description = "Easily update multiple Git repositories at once"; 28 + homepage = "https://github.com/earwig/git-repo-updater"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ 31 + bdesham 32 + artturin 33 + ]; 34 + mainProgram = "gitup"; 35 + }; 36 + }
+3 -3
pkgs/by-name/gi/gitlab-ci-ls/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "gitlab-ci-ls"; 11 - version = "1.1.2"; 11 + version = "1.1.8"; 12 12 src = fetchFromGitHub { 13 13 owner = "alesbrelih"; 14 14 repo = "gitlab-ci-ls"; 15 15 rev = "${version}"; 16 - hash = "sha256-0AVi/DyaWh+dCXm/jUf3M63KjobJWCCKHDvm1xGUzCw="; 16 + hash = "sha256-8386MX5jR4LNrpuXVmv+aLnfEvzSJBZgggS3Uj2MU9A="; 17 17 }; 18 18 19 - cargoHash = "sha256-3Ko+vf24dEfu+g4yGA5xY0R0TA9fSWuG398DxhHIVFU="; 19 + cargoHash = "sha256-tyx3GGhVyOOo1SnGlS02JqEhY+D70NqzKVX7WeXu+ls="; 20 20 21 21 nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ openssl ];
+26
pkgs/by-name/gn/gnu-smalltalk/0001-fix-compilation.patch
··· 1 + diff --git a/packages/iconv/iconv.c b/packages/iconv/iconv.c 2 + index ba2c38a7..55c2e737 100644 3 + --- a/packages/iconv/iconv.c 4 + +++ b/packages/iconv/iconv.c 5 + @@ -66,7 +66,7 @@ iconvWrapper (iconv_t handle, OOP readBufferOOP, int readPos, 6 + int readCount, OOP writeBufferOOP, int writeCount, 7 + OOP bytesLeftOOP) 8 + { 9 + - const char *inbuf; 10 + + char *inbuf; 11 + size_t inbytesleft; 12 + char *outbuf; 13 + size_t outbytesleft; 14 + diff --git a/packages/xml/expat/expat.c b/packages/xml/expat/expat.c 15 + index 0ceee46c..4ea35289 100644 16 + --- a/packages/xml/expat/expat.c 17 + +++ b/packages/xml/expat/expat.c 18 + @@ -573,7 +573,7 @@ gst_XML_ParserCreate (OOP parserOOP) 19 + XML_SetNotationDeclHandler (p, gst_NotationDeclHandler); 20 + XML_SetStartNamespaceDeclHandler (p, gst_StartNamespaceDeclHandler); 21 + XML_SetEndNamespaceDeclHandler (p, gst_EndNamespaceDeclHandler); 22 + - XML_SetSkippedEntityHandler (p, gst_SkippedEntityHandler); 23 + + XML_SetSkippedEntityHandler (p, (void (*)(void *, const XML_Char *, int))(gst_SkippedEntityHandler)); 24 + XML_SetReturnNSTriplet (p, true); 25 + 26 + if (!saxEventSequenceClass)
+13 -11
pkgs/by-name/gn/gnu-smalltalk/package.nix
··· 33 33 }); 34 34 35 35 in 36 - stdenv.mkDerivation rec { 37 - 38 - version = "3.2.5"; 36 + stdenv.mkDerivation (finalAttrs: { 39 37 pname = "gnu-smalltalk"; 38 + version = "3.2.5"; 40 39 41 40 src = fetchurl { 42 - url = "mirror://gnu/smalltalk/smalltalk-${version}.tar.xz"; 43 - sha256 = "1k2ssrapfzhngc7bg1zrnd9n2vyxp9c9m70byvsma6wapbvib6l1"; 41 + url = "mirror://gnu/smalltalk/smalltalk-${finalAttrs.version}.tar.xz"; 42 + hash = "sha256-gZoV97qKG1X19gucmli63W9hU7P5h7cOexZ+d1XWWsw="; 44 43 }; 45 44 46 45 patches = [ 47 46 # The awk script incorrectly parsed `glib/glib.h` and was trying to find `glib/gwin32.h`, 48 47 # that isn't included since we're building only for linux. 49 48 ./0000-fix_mkorder.patch 49 + ./0001-fix-compilation.patch 50 50 ]; 51 + 52 + enableParallelBuilding = true; 51 53 52 54 # The dependencies and their justification are explained at 53 55 # http://smalltalk.gnu.org/download ··· 71 73 72 74 hardeningDisable = [ "format" ]; 73 75 74 - installFlags = lib.optional emacsSupport "lispdir=$(out)/share/emacs/site-lisp"; 76 + installFlags = lib.optional emacsSupport "lispdir=${placeholder "$out"}/share/emacs/site-lisp"; 75 77 76 78 # For some reason the tests fail if executated with nix-build, but pass if 77 79 # executed within nix-shell --pure. 78 80 doCheck = false; 79 81 80 - meta = with lib; { 82 + meta = { 81 83 description = "Free implementation of the Smalltalk-80 language"; 82 84 longDescription = '' 83 85 GNU Smalltalk is a free implementation of the Smalltalk-80 language. It ··· 86 88 language, well-versed to scripting tasks. 87 89 ''; 88 90 homepage = "http://smalltalk.gnu.org/"; 89 - license = with licenses; [ 91 + license = with lib.licenses; [ 90 92 gpl2 91 93 lgpl2 92 94 ]; 93 - platforms = platforms.linux; 94 - maintainers = with maintainers; [ ]; 95 + platforms = lib.platforms.linux; 96 + maintainers = with lib.maintainers; [ ]; 95 97 }; 96 - } 98 + })
+2 -2
pkgs/by-name/gp/gpu-screen-recorder/package.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "gpu-screen-recorder"; 31 - version = "5.6.3"; 31 + version = "5.6.4"; 32 32 33 33 src = fetchgit { 34 34 url = "https://repo.dec05eba.com/${pname}"; 35 35 tag = version; 36 - hash = "sha256-VtB3UhfXTdfcdVs1or48pEHsN8DL8CLg12O0jMN5PIM="; 36 + hash = "sha256-is9O0tRMhdkiKzpYa2QI+BmELLFP8WPMTa1LLLtjkxw="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+3 -3
pkgs/by-name/gq/gql/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "gql"; 13 - version = "0.39.0"; 13 + version = "0.40.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "AmrDeveloper"; 17 17 repo = "GQL"; 18 18 rev = version; 19 - hash = "sha256-qV4Annd3gJzuxoXtDrhw9C8ESI1+4sdogJ5x2k/EBgc="; 19 + hash = "sha256-i6UbgtSWKXd/qqn1eBUoHo1kLTIybu2bnbrNn6aTAos="; 20 20 }; 21 21 22 - cargoHash = "sha256-lQMTWUFjxcev5PTdoNmZHgZWq7wPiI9AewQjYgXitxU="; 22 + cargoHash = "sha256-z2AXJGwzMYpGLqXkw8OpqJ++H7GpLbSdPoiA9RpMbKE="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+3 -3
pkgs/by-name/gt/gtree/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "gtree"; 11 - version = "1.11.7"; 11 + version = "1.11.8"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ddddddO"; 15 15 repo = "gtree"; 16 16 rev = "v${version}"; 17 - hash = "sha256-C/Ouk903jCi39TbYNggUO2Q8MBgB9Lq3p+9DiR/oHSA="; 17 + hash = "sha256-IBsfE0Y/LzXIaQdbXv1ZOslwj2U5fAhYIo67BixwDMY="; 18 18 }; 19 19 20 - vendorHash = "sha256-TS46EokHoh/GUSYlWnHTUaqvIrFHXhH/NMvcJ4GscjM="; 20 + vendorHash = "sha256-jGFEKwe0eglsj3U2jdlfMKYsMvwSu/z0EX+heCKQP0c="; 21 21 22 22 subPackages = [ 23 23 "cmd/gtree"
+2 -2
pkgs/by-name/gu/guile-curl/package.nix
··· 12 12 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "guile-curl"; 15 - version = "0.9"; 15 + version = "0.10"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "spk121"; 19 19 repo = "guile-curl"; 20 20 tag = "v${finalAttrs.version}"; 21 - hash = "sha256-nVA0cl4Oog3G+Ww0n0QMxJ66iqTn4VxrV+sqd6ACWl4="; 21 + hash = "sha256-pCYihn3Z0AeGt/6HueMAz0kPFYLVSB5NDPPGOUaAI2U="; 22 22 }; 23 23 24 24 strictDeps = true;
+3 -3
pkgs/by-name/ha/harper/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "harper"; 10 - version = "0.54.0"; 10 + version = "0.55.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Automattic"; 14 14 repo = "harper"; 15 15 rev = "v${version}"; 16 - hash = "sha256-pWxn7bQF28oAchOYNGM0vKRvrjF4uh1VTUqvQPowjpE="; 16 + hash = "sha256-lqN6TW78jCfn8HUBrkf7R7FV8iFEAoeycBVsUgggZHw="; 17 17 }; 18 18 19 19 buildAndTestSubdir = "harper-ls"; 20 20 21 - cargoHash = "sha256-etNmmPStjrsl4iS6kJxyzopiTqSCwX6K4dzT3EVxScE="; 21 + cargoHash = "sha256-befFgoP1bZSH9hqrLs9MCK2YkwJb4kK4h09I5y6qmzM="; 22 22 23 23 passthru.updateScript = nix-update-script { }; 24 24
+3 -3
pkgs/by-name/in/infrastructure-agent/package.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "infrastructure-agent"; 9 - version = "1.65.4"; 9 + version = "1.65.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "newrelic"; 13 13 repo = "infrastructure-agent"; 14 14 rev = version; 15 - hash = "sha256-jorMZxcJlaFlOm53Wtt4dssvXAUaiw5c8mL8UQoXrFk="; 15 + hash = "sha256-wrnZ7ZORPHoS1Y1mUvyaUUwhr+kdOA/18DLOB7fn/8E="; 16 16 }; 17 17 18 - vendorHash = "sha256-rnF/kX1CE8KFFp7Pud3dMH6660ScN8Un1qvHciXLAD8="; 18 + vendorHash = "sha256-UNbWsPu+1Qsjpa4T1Im8e+hm4XO7lQDkGutK5MLMUpc="; 19 19 20 20 ldflags = [ 21 21 "-s"
+3 -3
pkgs/by-name/ir/irust/package.nix
··· 21 21 22 22 rustPlatform.buildRustPackage rec { 23 23 pname = "irust"; 24 - version = "1.73.0"; 24 + version = "1.74.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "sigmaSd"; 28 28 repo = "IRust"; 29 29 rev = "irust@${version}"; 30 - hash = "sha256-oBHqyOqUNXO5c3TYFp84fDKA+R8ZmrgFCQswu7yXkGw="; 30 + hash = "sha256-xqBKacNc+sehQeviqs5uPi4ZKh7fD5LAI2Zlp27zaTc="; 31 31 }; 32 32 33 - cargoHash = "sha256-YRptwZm00Px+3S+QFZAZxg25ObwmRdbgonzbMnBBb50="; 33 + cargoHash = "sha256-w28lPqK87qegzIJdab3DjxUkHgeepYlIH3Y0VUrS5uI="; 34 34 35 35 nativeBuildInputs = [ makeWrapper ]; 36 36
+3 -3
pkgs/by-name/jp/jp-zip-codes/package.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation { 9 9 pname = "jp-zip-code"; 10 - version = "0-unstable-2025-07-01"; 10 + version = "0-unstable-2025-08-01"; 11 11 12 12 # This package uses a mirror as the source because the 13 13 # original provider uses the same URL for updated content. 14 14 src = fetchFromGitHub { 15 15 owner = "musjj"; 16 16 repo = "jp-zip-codes"; 17 - rev = "14225eb658d065f030f856891060b8b490af79c0"; 18 - hash = "sha256-T0mCBFFV6WNExmAn/HXpdwSslSsvqtqO3Ua87Ud9lbk="; 17 + rev = "e3f5e6c1509e2dc5f2e60c88324a72635923fcbc"; 18 + hash = "sha256-bGBQ/S6U6agVxlKk3ZZ2ffiO1JipzQt+ctpLt6laLPk="; 19 19 }; 20 20 21 21 installPhase = ''
+3 -3
pkgs/by-name/jx/jx/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "jx"; 12 - version = "3.11.97"; 12 + version = "3.16.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "jenkins-x"; 16 16 repo = "jx"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-UhtYX6InyCIP83+cVTjUImqm7oFuL4vU9wVlEM11fZw="; 18 + sha256 = "sha256-pvFSvaPdqq2uBDdn723TyGzz0MxNjM/MtI/1llcAxFI="; 19 19 }; 20 20 21 - vendorHash = "sha256-8I4yTzLAL7E0ozHcBZDNsJLHkTh+SjT0SjDSECGRYIc="; 21 + vendorHash = "sha256-qCcwCsinzkjN+g7wxn60JoFBGk6Swydi93w3dZNpsZY="; 22 22 23 23 subPackages = [ "cmd" ]; 24 24
+3 -3
pkgs/by-name/ma/markuplinkchecker/package.nix
··· 6 6 openssl, 7 7 }: 8 8 let 9 - version = "0.22.0"; 9 + version = "1.0.0"; 10 10 in 11 11 rustPlatform.buildRustPackage { 12 12 pname = "markuplinkchecker"; ··· 16 16 owner = "becheran"; 17 17 repo = "mlc"; 18 18 rev = "v${version}"; 19 - hash = "sha256-3saRIAKVTCi145hoD0SGPloCeIwVKR3Wp3Qo3zo9g7k="; 19 + hash = "sha256-Bj1Yf+lrKwMvYnE/YVb+KC8tZtRr2OkWoYxQChLINyY="; 20 20 }; 21 21 22 - cargoHash = "sha256-DHpOReEdufQ4++74CJDnW6EJtUwhtq+RgZ6hVGqHkKE="; 22 + cargoHash = "sha256-r3LGWJ5RsvWRXNVXWIM83quC3AT8T+WDfSJnD3sVoOM="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25
+2 -2
pkgs/by-name/ma/materialgram/package.nix
··· 11 11 unwrapped = telegram-desktop.unwrapped.overrideAttrs ( 12 12 finalAttrs: previousAttrs: { 13 13 pname = "materialgram-unwrapped"; 14 - version = "5.16.4.1"; 14 + version = "6.0.0.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "kukuruzka165"; 18 18 repo = "materialgram"; 19 19 rev = "refs/tags/v${finalAttrs.version}"; 20 - hash = "sha256-sN+Asoy9oZ08wZv9y454HqBxkEK7Zt0ynmfyuzk/SBc="; 20 + hash = "sha256-MXIXYwYuILm/bAShH9tZWOndDFOsp9oVYonX+BPPK4M="; 21 21 fetchSubmodules = true; 22 22 }; 23 23
+3 -3
pkgs/by-name/ma/matrix-alertmanager-receiver/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "matrix-alertmanager-receiver"; 11 - version = "2025.7.23"; 11 + version = "2025.7.30"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "metio"; 15 15 repo = "matrix-alertmanager-receiver"; 16 16 tag = finalAttrs.version; 17 - hash = "sha256-DkltZsWcCFLMDzTMxDv+amwbTVNHxpQVBtgpnTJOFsU="; 17 + hash = "sha256-2zTkRXXXMMphNyw/OeiIAmc4KP0LqN6M0vtpX/7fhoI="; 18 18 }; 19 19 20 - vendorHash = "sha256-6N0G0JGFp+dIUyTFHwpp526QmVZlp071NX+H6CB0uVE="; 20 + vendorHash = "sha256-zOaAvPCAEQkJMogJ6ly0jkHfj+SAlFqk5m+eQdsaxK4="; 21 21 22 22 env.CGO_ENABLED = "0"; 23 23
+6
pkgs/by-name/nf/nfft/package.nix
··· 8 8 libtool, 9 9 llvmPackages, 10 10 stdenv, 11 + bash, 11 12 }: 12 13 13 14 stdenv.mkDerivation (finalAttrs: { ··· 26 27 automake 27 28 cunit 28 29 libtool 30 + bash 29 31 ]; 30 32 31 33 preConfigure = '' ··· 37 39 "--enable-openmp" 38 40 "--enable-portable-binary" 39 41 ]; 42 + 43 + env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; 44 + 45 + enableParalleBuilding = true; 40 46 41 47 buildInputs = lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ]; 42 48
+2 -2
pkgs/by-name/no/nova/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "nova"; 9 - version = "3.11.6"; 9 + version = "3.11.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "FairwindsOps"; 13 13 repo = "nova"; 14 14 rev = "v${version}"; 15 - hash = "sha256-lYnVysBeZAYM++tlbVnIUfmJMujilHiPtLBH5Vp0puI="; 15 + hash = "sha256-5N4WHb5IWvUIg4i0XqSUWCLZM2rXPAiy2JVGlddvLFQ="; 16 16 }; 17 17 18 18 vendorHash = "sha256-+cw2NclPLT9S1iakK2S5uc+nFE84MIl6QOH/L0kgoHE=";
+2 -2
pkgs/by-name/nv/nvrh/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "nvrh"; 11 - version = "0.1.19"; 11 + version = "0.1.20"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mikew"; 15 15 repo = "nvrh"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-oLCHuU2KZypMnW+KOuc3RhSP/mO4hQUN3Pi1W8uhoJA="; 17 + hash = "sha256-hKlL/kjfDtWZHfDuVbVNVnhBEeJcX5zWFtDaNW/KExI="; 18 18 }; 19 19 20 20 postPatch = ''
+2 -2
pkgs/by-name/op/openterface-qt/package.nix
··· 22 22 in 23 23 stdenv.mkDerivation (final: { 24 24 pname = "openterface-qt"; 25 - version = "0.3.17"; 25 + version = "0.3.18"; 26 26 src = fetchFromGitHub { 27 27 owner = "TechxArtisanStudio"; 28 28 repo = "Openterface_QT"; 29 29 rev = "${final.version}"; 30 - hash = "sha256-kXDiQINbP7D2qUqKUAZXEW2iJqKEH/AqMSE2zU+jRHg="; 30 + hash = "sha256-yD71UOi6iRd9N3NeASUzqoeHMcTYIqkysAfxRm7GkOA="; 31 31 }; 32 32 nativeBuildInputs = [ 33 33 copyDesktopItems
+106
pkgs/by-name/pr/protonmail-export/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + buildGoModule, 6 + 7 + cmake, 8 + curl, 9 + go, 10 + unzip, 11 + zip, 12 + 13 + catch2, 14 + cxxopts, 15 + fmt, 16 + 17 + versionCheckHook, 18 + }: 19 + stdenv.mkDerivation (finalAttrs: { 20 + pname = "protonmail-export"; 21 + version = "1.0.5"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "ProtonMail"; 25 + repo = "proton-mail-export"; 26 + tag = "v${finalAttrs.version}"; 27 + fetchSubmodules = true; 28 + hash = "sha256-rpfTI3vcZlEK1TrxRMMHFKutwC/YqAZrZCFiUsfMafc="; 29 + }; 30 + 31 + goModules = 32 + (buildGoModule { 33 + pname = "protonmail-export-go-modules"; 34 + inherit (finalAttrs) src version; 35 + sourceRoot = "${finalAttrs.src.name}/go-lib"; 36 + vendorHash = "sha256-rKi3PNsYsZA+MLcLTVrVI3T2SUBZCiq9Zxtf+1SGArk="; 37 + 38 + nativeBuildInputs = [ unzip ]; 39 + 40 + proxyVendor = true; 41 + }).goModules; 42 + 43 + postPatch = '' 44 + echo "" > vcpkg/scripts/buildsystems/vcpkg.cmake 45 + 46 + substituteInPlace CMakeLists.txt \ 47 + --replace-fail 'include(clang_tidy)' ''' \ 48 + --replace-fail 'include(clang_format)' ''' 49 + 50 + substituteInPlace lib/CMakeLists.txt \ 51 + --replace-fail 'add_subdirectory(tests)' ''' 52 + 53 + substituteInPlace cli/bin/main.cpp --replace-fail \ 54 + 'execPath = etcpp::getExecutableDir();' 'execPath = std::filesystem::u8path(std::getenv("HOME")) / ".config" / "protonmail-export";' 55 + ''; 56 + 57 + preConfigure = '' 58 + export GOCACHE=$TMPDIR/go-cache 59 + export GOPATH=$TMPDIR/go 60 + export GOPROXY=file://$goModules 61 + ''; 62 + 63 + nativeBuildInputs = [ 64 + cmake 65 + curl 66 + go 67 + unzip 68 + zip 69 + ]; 70 + 71 + buildInputs = [ 72 + fmt 73 + catch2 74 + cxxopts 75 + ]; 76 + 77 + postInstall = 78 + let 79 + so = "proton-mail-export${stdenv.hostPlatform.extensions.library}"; 80 + in 81 + '' 82 + install -Dm644 $out/bin/${so} -t $out/lib 83 + rm -f $out/bin/${so} 84 + '' 85 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 86 + install_name_tool -change @loader_path/${so} \ 87 + $out/lib/${so} \ 88 + $out/bin/proton-mail-export-cli 89 + ''; 90 + 91 + nativeInstallCheckInputs = [ 92 + versionCheckHook 93 + ]; 94 + versionCheckProgram = "${placeholder "out"}/bin/proton-mail-export-cli"; 95 + versionCheckProgramArg = "--version"; 96 + doInstallCheck = true; 97 + 98 + meta = { 99 + description = "Export your Proton Mail emails as eml files"; 100 + homepage = "https://github.com/ProtonMail/proton-mail-export"; 101 + license = lib.licenses.gpl3Plus; 102 + platforms = lib.platforms.unix; 103 + maintainers = [ lib.maintainers.ryand56 ]; 104 + mainProgram = "proton-mail-export-cli"; 105 + }; 106 + })
+3 -3
pkgs/by-name/ps/pscale/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "pscale"; 13 - version = "0.248.0"; 13 + version = "0.250.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "planetscale"; 17 17 repo = "cli"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-Vp9qS8Od+OVV/kVMH8CsD/Ltx9aFykU7E8w+o91J2gY="; 19 + sha256 = "sha256-5SDdYHfOlPzPwnz0ibW9j6rI74XywnzzIg3SSW0aolg="; 20 20 }; 21 21 22 - vendorHash = "sha256-eGF44NEW8dIm2neJmGnYiafvRISIAUgA5jKV9EzsJj0="; 22 + vendorHash = "sha256-1r5KGYKjABQI2HZETvY80M9Cbza1bsZnf1401MbVE5U="; 23 23 24 24 ldflags = [ 25 25 "-s"
+2 -2
pkgs/by-name/pw/pwsafe/package.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "pwsafe"; 28 - version = "1.21.0fp"; # do NOT update to 3.x Windows releases 28 + version = "1.22.0fp"; # do NOT update to 3.x Windows releases 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "pwsafe"; 32 32 repo = "pwsafe"; 33 33 rev = version; 34 - hash = "sha256-pPKUFX6NNGtGGjHL3g0Y6xzj+bHU2KDNMhYCnpP9wgM="; 34 + hash = "sha256-oVhpdJPpGNMqL1y67Kv3osa1Cx5YM8SyaNuRWeMfd9g="; 35 35 }; 36 36 37 37 strictDeps = true;
+3 -3
pkgs/by-name/py/pyrefly/package.nix
··· 7 7 }: 8 8 rustPlatform.buildRustPackage (finalAttrs: { 9 9 pname = "pyrefly"; 10 - version = "0.20.2"; 10 + version = "0.26.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "facebook"; 14 14 repo = "pyrefly"; 15 15 tag = finalAttrs.version; 16 - hash = "sha256-E3CPs3/c5/0VKeRFI6dNRj0xUoU9YBV1rZ1qFt4E2+U="; 16 + hash = "sha256-XjAeCbg4Jgk/5PVnUMzFaJS1Qz24UEnQVV/cXEyUnZU="; 17 17 }; 18 18 19 19 buildAndTestSubdir = "pyrefly"; 20 - cargoHash = "sha256-EkGw7y5NtJ6Yd3DzL4z+81I0v5WyIwZ28klHXMqHjJc="; 20 + cargoHash = "sha256-SadZDZA0B99MGDYGppZvQtThKX3YLMe/lQ2eMLuYMhk="; 21 21 22 22 nativeInstallCheckInputs = [ versionCheckHook ]; 23 23 doInstallCheck = true;
-82
pkgs/by-name/re/rewind-ai/package.nix
··· 1 - { 2 - lib, 3 - stdenvNoCC, 4 - fetchzip, 5 - writeShellApplication, 6 - curl, 7 - gawk, 8 - xmlstarlet, 9 - common-updater-scripts, 10 - }: 11 - 12 - stdenvNoCC.mkDerivation (finalAttrs: { 13 - pname = "rewind-ai"; 14 - # Example version with explanation 15 - # 1.5284 (Base version) 16 - # 15284.1 (build number) 17 - # dcd0176 (commit hash) 18 - # 20240504 (pub date) 19 - version = "1.5310-15310.1-5f6bcc5-20240930"; 20 - 21 - src = fetchzip { 22 - url = 23 - let 24 - buildNumber = lib.elemAt (lib.splitString "-" finalAttrs.version) 1; 25 - commitHash = lib.elemAt (lib.splitString "-" finalAttrs.version) 2; 26 - in 27 - "https://updates.rewind.ai/builds/main/b${buildNumber}-main-${commitHash}.zip"; 28 - hash = "sha256-uNqblEOezCj1JanDl6MZZO3GLX5jgWh19VeMcmwZvZg="; 29 - }; 30 - 31 - installPhase = '' 32 - runHook preInstall 33 - 34 - mkdir -p "$out/Applications/Rewind.app" 35 - cp -R . "$out/Applications/Rewind.app" 36 - 37 - runHook postInstall 38 - ''; 39 - 40 - # Example response to use when modifying the script: https://pastebin.com/raw/90qU3n6H 41 - # There is a real harsh limit on update checks, so DO NOT send any unnecessary update checks 42 - # Wait at least 3 days since the last pub_date (you will find the date at the end of the version number) 43 - # Example: 20240504 would be 2024/05/04, and that would mean that we want to check no earlier than on 2024/05/07 for any updates 44 - passthru.updateScript = lib.getExe (writeShellApplication { 45 - name = "${finalAttrs.pname}-update-script"; 46 - runtimeInputs = [ 47 - curl 48 - gawk 49 - xmlstarlet 50 - common-updater-scripts 51 - ]; 52 - text = '' 53 - xml_get () { 54 - echo "$update_xml" | xmlstarlet sel -t -v "$1" 55 - } 56 - 57 - update_url="https://updates.rewind.ai/appcasts/main.xml" 58 - 59 - update_xml=$(curl -s "$update_url") 60 - 61 - version_base=$(xml_get "/rss/channel/item/sparkle:shortVersionString") 62 - url=$(xml_get "/rss/channel/item/enclosure/@url") 63 - pub_date=$(xml_get "/rss/channel/item/pubDate") 64 - commit_id=$(echo "$url" | awk -F '-|\\.' '{ print $(NF - 1) }') 65 - build_number=$(xml_get "/rss/channel/item/sparkle:version") 66 - formatted_pub_date=$(date -d "$pub_date" +"%Y%m%d") 67 - 68 - full_version="''${version_base}-''${build_number}-''${commit_id}-''${formatted_pub_date}" 69 - update-source-version "rewind-ai" "$full_version" --version-key=version --file=./pkgs/by-name/re/rewind-ai/package.nix --print-changes 70 - ''; 71 - }); 72 - 73 - meta = { 74 - changelog = "https://www.rewind.ai/changelog"; 75 - description = "Rewind is a personalized AI powered by everything you've seen, said, or heard"; 76 - homepage = "https://www.rewind.ai/"; 77 - license = lib.licenses.unfree; 78 - maintainers = with lib.maintainers; [ donteatoreo ]; 79 - platforms = [ "aarch64-darwin" ]; 80 - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 81 - }; 82 - })
+3 -3
pkgs/by-name/ru/rust-motd/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "rust-motd"; 11 - version = "2.0.0"; 11 + version = "2.1.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "rust-motd"; 15 15 repo = "rust-motd"; 16 16 rev = "v${version}"; 17 - hash = "sha256-NgNMTsm9C+0Lt6r1zYA486oSQpGIMxLsPozdDw7lILs="; 17 + hash = "sha256-06iWk0VobdHP94eNaEyQnIBx5YkoW0/IQQtUFWTkEe0="; 18 18 }; 19 19 20 - cargoHash = "sha256-pm/N00H840WzuP/BcvyqgZ/9zbNsHKm/UZ0O88giasY="; 20 + cargoHash = "sha256-f+441tEy1+AWXsz2Byrg0+Tz8jHcC1SD9WNZlkgWGZ4="; 21 21 22 22 nativeBuildInputs = [ 23 23 pkg-config
+3 -3
pkgs/by-name/sh/sherlock-launcher/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage (finalAttrs: { 19 19 pname = "sherlock-launcher"; 20 - version = "0.1.13-hotfix-2"; 20 + version = "0.1.14-2"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "Skxxtz"; 24 24 repo = "sherlock"; 25 25 tag = "v${finalAttrs.version}"; 26 - hash = "sha256-5ERCusCDf+GCwmJc5BrEK8Kn5ClMOILBStv17vyS7MQ="; 26 + hash = "sha256-k5v1eeRxwCpU7+nBU6/q8I6O2e0kXojyhNTeZ3k/Qxo="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ ··· 43 43 librsvg 44 44 ]; 45 45 46 - cargoHash = "sha256-F2jXCJnj2kGPANXSzx65DfKxKgXtwR0xRNFZie6PYx0="; 46 + cargoHash = "sha256-fct2xHZmrPMn/HXPtMaYraODT0Yi/wZEPw5X8KwhnGk="; 47 47 48 48 passthru.updateScript = nix-update-script { }; 49 49
+2 -2
pkgs/by-name/si/signaturepdf/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "signaturepdf"; 16 - version = "1.8.0"; 16 + version = "1.9.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "24eme"; 20 20 repo = "signaturepdf"; 21 21 rev = "v${version}"; 22 - hash = "sha256-Sk59yHnLSmO/Dd+cAntiAXzYyo6Rsp779Q+SszonbMc="; 22 + hash = "sha256-DLPLloSt9yMEWFqmplQ8WictanlwRc4oQbTEQLUxR+E="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/st/stats/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "stats"; 11 - version = "2.11.45"; 11 + version = "2.11.49"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/exelban/stats/releases/download/v${finalAttrs.version}/Stats.dmg"; 15 - hash = "sha256-OdZ8LCU0kCCKk4SeyDryDpyCUsjf8aUZAv2o/cR4GX8="; 15 + hash = "sha256-v+ZwEFYb5v7dUZlXar8io4/Lr34326ZM1p5j7OzSmig="; 16 16 }; 17 17 18 18 sourceRoot = ".";
+3 -3
pkgs/by-name/su/sudo-rs/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage (finalAttrs: { 14 14 pname = "sudo-rs"; 15 - version = "0.2.7"; 15 + version = "0.2.8"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "trifectatechfoundation"; 19 19 repo = "sudo-rs"; 20 20 tag = "v${finalAttrs.version}"; 21 - hash = "sha256-02ODKMumYUKcmSfPAiCwpRph5+Zy+g5uqqbJ9ThRxRg="; 21 + hash = "sha256-82qd9lVwxI9Md7NWpfauGWKtvR1MvX9VNZ9e1RvzmP4="; 22 22 }; 23 23 24 - cargoHash = "sha256-o3//zJxB6CNHQl1DtfmFnSBP9npC4I9/hRuzpWrKoNs="; 24 + cargoHash = "sha256-hvXVdPs2K1FPi06NZSockNXA9QOnXOsrONiMCTiIs2I="; 25 25 26 26 nativeBuildInputs = [ installShellFiles ]; 27 27
+3 -3
pkgs/by-name/te/terraform-mcp-server/package.nix
··· 5 5 }: 6 6 buildGoModule (finalAttrs: { 7 7 pname = "terraform-mcp-server"; 8 - version = "0.2.0"; 8 + version = "0.2.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "hashicorp"; 12 12 repo = "terraform-mcp-server"; 13 13 tag = "v${finalAttrs.version}"; 14 - hash = "sha256-wc9XnaVC/mQIy57PETDgJBskzqjU/HscAQTCFh11Q28="; 14 + hash = "sha256-bbCVW9zAlpLpe012AXCkV/EY7QyeXrOqjEExvJGA5aY="; 15 15 }; 16 16 17 - vendorHash = "sha256-R3sfdx7xffmldH2jzE/q/tBaB/YLOhdLAoFvEScFvn0="; 17 + vendorHash = "sha256-lW5XIaY5NAn3sSDJExMd1i/dueb4p1Uc4Qpr4xsgmfE="; 18 18 19 19 ldflags = [ 20 20 "-X main.version=${finalAttrs.version}"
+38
pkgs/by-name/ti/ting/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + alsa-lib, 7 + nix-update-script, 8 + }: 9 + 10 + rustPlatform.buildRustPackage (finalAttrs: { 11 + pname = "ting"; 12 + version = "0.1.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "dhth"; 16 + repo = "ting"; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-k6TJ9/YtsjNNYPj8YUGCfaQaVwXHoUQG4muOvrkN34A="; 19 + }; 20 + 21 + cargoHash = "sha256-yDSOXvRRBIDYhggj1SwAHxI3jv+xAs2LTUmUqPxCk00="; 22 + 23 + nativeBuildInputs = [ pkg-config ]; 24 + 25 + buildInputs = [ alsa-lib ]; 26 + 27 + passthru.updateScript = nix-update-script { }; 28 + 29 + meta = { 30 + description = "Audio feedback on the command line"; 31 + homepage = "https://github.com/dhth/ting"; 32 + changelog = "https://github.com/dhth/ting/releases/tag/${finalAttrs.src.tag}"; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ yiyu ]; 35 + mainProgram = "ting"; 36 + platforms = lib.platforms.linux; 37 + }; 38 + })
+2 -2
pkgs/by-name/ur/url-parser/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "url-parser"; 9 - version = "2.1.8"; 9 + version = "2.1.9"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "thegeeklab"; 13 13 repo = "url-parser"; 14 14 tag = "v${version}"; 15 - hash = "sha256-pxpeqZfvNZbX+Eh4Jh1SRo0ymvZokeEQRotW7XV3Udo="; 15 + hash = "sha256-JVrdqASkFwVl8p5vuaiWY6Qvl2VNNb4YKFjChEJHbUs="; 16 16 }; 17 17 18 18 vendorHash = "sha256-GhBSVbzZ3UqFroLimi5VbTVO6DhEMVAd6iyhGwO6HK0=";
+2 -2
pkgs/by-name/vi/vial/package.nix
··· 4 4 appimageTools, 5 5 }: 6 6 let 7 - version = "0.7.3"; 7 + version = "0.7.4"; 8 8 pname = "Vial"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/vial-kb/vial-gui/releases/download/v${version}/${pname}-v${version}-x86_64.AppImage"; 12 - hash = "sha256-tdSJjmf1IUQ1S7V90dTVgWJDOAuBsiUTUz0QV6LPlqo="; 12 + hash = "sha256-SxZC+ihJsmIQAZ31G6wS42qTxdt1/8lx80bHox3sy28="; 13 13 }; 14 14 15 15 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+2 -2
pkgs/by-name/wa/wakatime-cli/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "wakatime-cli"; 13 - version = "1.124.1"; 13 + version = "1.129.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "wakatime"; 17 17 repo = "wakatime-cli"; 18 18 tag = "v${version}"; 19 - hash = "sha256-Fr3ROi8OXZqyN3lXPkAtelkN47X+MXHGAhr5FQvPSqQ="; 19 + hash = "sha256-FGHjcPDRGEGFacPZzzwtuCD/c8l5gYBBOBaU1fQOkGw="; 20 20 }; 21 21 22 22 vendorHash = "sha256-jyFUauK+CAuSv+dKUyVtuoTizeGkKnNquZLA96oq1BM=";
+2 -2
pkgs/by-name/wa/walker/package.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "walker"; 17 - version = "0.13.13"; 17 + version = "0.13.14"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "abenz1267"; 21 21 repo = "walker"; 22 22 rev = "v${version}"; 23 - hash = "sha256-/4XKb2nU76EvUeuvhaTQr2CeLA5k20D0/XXYdX4n9cs="; 23 + hash = "sha256-IX1m/1T6FDhGunS3wvZbn4Iv1sziMQzuRepNkEe9LC4="; 24 24 }; 25 25 26 26 vendorHash = "sha256-N7lNxO/l3E1BlSSbSiQjrDPy2sWwk4G4JYlUArmMJxs=";
+3 -3
pkgs/by-name/we/webex/package.nix
··· 57 57 58 58 stdenv.mkDerivation rec { 59 59 pname = "webex"; 60 - version = "45.6.1.32593"; 60 + version = "45.6.2.32823"; 61 61 62 62 src = fetchurl { 63 - url = "https://binaries.webex.com/WebexDesktop-Ubuntu-Gold/20250617170507/Webex_ubuntu.7z"; 64 - sha256 = "a024d8b9c40309a291d2070123935077579ae5aa9b60366e7aaa52fa818122b0"; 63 + url = "https://binaries.webex.com/WebexDesktop-Ubuntu-Gold/20250725151734/Webex_ubuntu.7z"; 64 + sha256 = "72e9693d7c1c09ebf2c93c5e29e2b52a012eaf3ac108d7759d66be500c528b3b"; 65 65 }; 66 66 67 67 nativeBuildInputs = [
+2 -2
pkgs/by-name/wx/wxsqlite3/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "wxsqlite3"; 12 - version = "4.10.11"; 12 + version = "4.10.12"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "utelle"; 16 16 repo = "wxsqlite3"; 17 17 rev = "v${version}"; 18 - hash = "sha256-AjBtwA94yN4PYaWiL71SbdBjRV5ehBvf5IP6aru9dgM="; 18 + hash = "sha256-3t8SQJdB7ivuCnsr5TxmgslQNkvz+O/mE3NB+R/kXHM="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/by-name/wy/wyoming-piper/package.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "wyoming-piper"; 9 - version = "1.6.1"; 9 + version = "1.6.3"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rhasspy"; 14 14 repo = "wyoming-piper"; 15 15 tag = "v${version}"; 16 - hash = "sha256-r7odRraBSDP2fbRJ3ixaL80fhBSb9r5icPuf1Qa6Va8="; 16 + hash = "sha256-Opnv4PtLZpG2kBAuJ8xWsQpJ2y9G9zYFsHQm7nwjUKk="; 17 17 }; 18 18 19 19 build-system = with python3Packages; [
+1 -1
pkgs/by-name/yo/yodl/package.nix
··· 91 91 description = "Package that implements a pre-document language and tools to process it"; 92 92 homepage = "https://fbb-git.gitlab.io/yodl/"; 93 93 mainProgram = "yodl"; 94 - license = lib.licenses.agpl3Only; # Upstream did not clarify the license used. https://gitlab.com/fbb-git/yodl/-/issues/4 94 + license = lib.licenses.agpl3Plus; 95 95 maintainers = with lib.maintainers; [ pSub ]; 96 96 platforms = lib.platforms.linux; 97 97 };
+12 -18
pkgs/data/themes/material-kwin-decoration/default.nix pkgs/by-name/ma/material-kwin-decoration/package.nix
··· 1 1 { 2 2 lib, 3 - mkDerivation, 3 + stdenv, 4 4 fetchFromGitHub, 5 5 cmake, 6 - extra-cmake-modules, 7 - qtx11extras, 8 - kcoreaddons, 9 - kguiaddons, 10 - kconfig, 11 - kdecoration, 12 - kconfigwidgets, 13 - kwindowsystem, 14 - kiconthemes, 15 - kwayland, 6 + libsForQt5, 16 7 unstableGitUpdater, 17 8 }: 18 9 19 - mkDerivation { 10 + stdenv.mkDerivation { 20 11 pname = "material-kwin-decoration"; 21 12 version = "7-unstable-2023-01-15"; 22 13 ··· 24 15 owner = "Zren"; 25 16 repo = "material-decoration"; 26 17 rev = "0e989e5b815b64ee5bca989f983da68fa5556644"; 27 - sha256 = "sha256-Ncn5jxkuN4ZBWihfycdQwpJ0j4sRpBGMCl6RNiH4mXg="; 18 + hash = "sha256-Ncn5jxkuN4ZBWihfycdQwpJ0j4sRpBGMCl6RNiH4mXg="; 28 19 }; 29 20 30 21 # Remove -Werror since it uses deprecated methods ··· 35 26 36 27 nativeBuildInputs = [ 37 28 cmake 29 + ] 30 + ++ (with libsForQt5; [ 38 31 extra-cmake-modules 39 - ]; 32 + wrapQtAppsHook 33 + ]); 40 34 41 - buildInputs = [ 35 + buildInputs = with libsForQt5; [ 42 36 qtx11extras 43 37 kcoreaddons 44 38 kguiaddons ··· 56 50 }; 57 51 }; 58 52 59 - meta = with lib; { 53 + meta = { 60 54 description = "Material-ish window decoration theme for KWin"; 61 55 homepage = "https://github.com/Zren/material-decoration"; 62 - license = licenses.gpl2; 63 - maintainers = with maintainers; [ nickcao ]; 56 + license = lib.licenses.gpl2; 57 + maintainers = with lib.maintainers; [ nickcao ]; 64 58 }; 65 59 }
+9 -13
pkgs/data/themes/utterly-nord-plasma/default.nix pkgs/by-name/ut/utterly-nord-plasma/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - breeze-icons, 6 - kdeclarative, 7 - kirigami, 8 - plasma-framework, 9 - plasma-workspace, 5 + kdePackages, 10 6 }: 11 7 12 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation { 13 9 pname = "utterly-nord-plasma"; 14 10 version = "3.2"; 15 11 16 12 src = fetchFromGitHub { 17 13 owner = "HimDek"; 18 - repo = pname; 14 + repo = "utterly-nord-plasma"; 19 15 rev = "e513b4dfeddd587a34bfdd9ba6b1d1eac8ecadf5"; 20 16 hash = "sha256-moLgBFR+BgoiEBzV3y/LA6JZfLHrG1weL1+h8LN9ztA="; 21 17 }; 22 18 23 - propagatedUserEnvPkgs = [ 19 + propagatedUserEnvPkgs = with kdePackages; [ 24 20 breeze-icons 25 21 kdeclarative 26 22 kirigami 27 - plasma-framework 23 + libplasma 28 24 plasma-workspace 29 25 ]; 30 26 ··· 54 50 runHook postInstall 55 51 ''; 56 52 57 - meta = with lib; { 53 + meta = { 58 54 description = "Plasma theme with Nordic Colors, transparency, blur and round edges for UI elements"; 59 55 homepage = "https://himdek.com/Utterly-Nord-Plasma/"; 60 - license = licenses.gpl2Plus; 61 - platforms = platforms.all; 62 - maintainers = [ maintainers.romildo ]; 56 + license = lib.licenses.gpl2Plus; 57 + platforms = lib.platforms.all; 58 + maintainers = with lib.maintainers; [ romildo ]; 63 59 }; 64 60 }
+2 -2
pkgs/desktops/gnome/extensions/valent/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "gnome-shell-extension-valent"; 12 - version = "1.0.0.alpha.47"; 12 + version = "1.0.0.alpha.48"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "andyholmes"; 16 16 repo = "gnome-shell-extension-valent"; 17 17 tag = "v${version}"; 18 - hash = "sha256-KynVbJtpGl4moIAlxzXouM+nxOGImIcCWdevveshbbo="; 18 + hash = "sha256-j5590Emcga3Wp7/lC/ni2NpEC3bkR2/vT4Cq/m8GvBM="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
-105
pkgs/development/cuda-modules/_cuda/db/bootstrap/nvcc.nix
··· 28 28 ``` 29 29 */ 30 30 nvccCompatibilities = { 31 - # Our baseline 32 - # https://docs.nvidia.com/cuda/archive/11.0/cuda-toolkit-release-notes/index.html#cuda-compiler-new-features 33 - "11.0" = { 34 - clang = { 35 - maxMajorVersion = "9"; 36 - minMajorVersion = "7"; 37 - }; 38 - gcc = { 39 - maxMajorVersion = "9"; 40 - minMajorVersion = "6"; 41 - }; 42 - }; 43 - 44 - # Added support for Clang 10 and GCC 10 45 - # https://docs.nvidia.com/cuda/archive/11.1.1/cuda-toolkit-release-notes/index.html#cuda-compiler-new-features 46 - "11.1" = { 47 - clang = { 48 - maxMajorVersion = "10"; 49 - minMajorVersion = "7"; 50 - }; 51 - gcc = { 52 - maxMajorVersion = "10"; 53 - minMajorVersion = "6"; 54 - }; 55 - }; 56 - 57 - # Added support for Clang 11 58 - # https://docs.nvidia.com/cuda/archive/11.2.2/cuda-installation-guide-linux/index.html#system-requirements 59 - "11.2" = { 60 - clang = { 61 - maxMajorVersion = "11"; 62 - minMajorVersion = "7"; 63 - }; 64 - gcc = { 65 - maxMajorVersion = "10"; 66 - minMajorVersion = "6"; 67 - }; 68 - }; 69 - 70 - # No changes from 11.2 to 11.3 71 - "11.3" = { 72 - clang = { 73 - maxMajorVersion = "11"; 74 - minMajorVersion = "7"; 75 - }; 76 - gcc = { 77 - maxMajorVersion = "10"; 78 - minMajorVersion = "6"; 79 - }; 80 - }; 81 - 82 - # Added support for Clang 12 and GCC 11 83 - # https://docs.nvidia.com/cuda/archive/11.4.4/cuda-toolkit-release-notes/index.html#cuda-general-new-features 84 - # NOTE: There is a bug in the version of GLIBC that GCC 11 uses which causes it to fail to compile some CUDA 85 - # code. As such, we skip it for this release, and do the bump in 11.6 (skipping 11.5). 86 - # https://forums.developer.nvidia.com/t/cuda-11-5-samples-throw-multiple-error-attribute-malloc-does-not-take-arguments/192750/15 87 - "11.4" = { 88 - clang = { 89 - maxMajorVersion = "12"; 90 - minMajorVersion = "7"; 91 - }; 92 - gcc = { 93 - maxMajorVersion = "10"; 94 - minMajorVersion = "6"; 95 - }; 96 - }; 97 - 98 - # No changes from 11.4 to 11.5 99 - "11.5" = { 100 - clang = { 101 - maxMajorVersion = "12"; 102 - minMajorVersion = "7"; 103 - }; 104 - gcc = { 105 - maxMajorVersion = "10"; 106 - minMajorVersion = "6"; 107 - }; 108 - }; 109 - 110 - # No changes from 11.5 to 11.6 111 - # However, as mentioned above, we add GCC 11 this release. 112 - "11.6" = { 113 - clang = { 114 - maxMajorVersion = "12"; 115 - minMajorVersion = "7"; 116 - }; 117 - gcc = { 118 - maxMajorVersion = "11"; 119 - minMajorVersion = "6"; 120 - }; 121 - }; 122 - 123 - # Added support for Clang 13 124 - # https://docs.nvidia.com/cuda/archive/11.7.1/cuda-toolkit-release-notes/index.html#cuda-compiler-new-features 125 - "11.7" = { 126 - clang = { 127 - maxMajorVersion = "13"; 128 - minMajorVersion = "7"; 129 - }; 130 - gcc = { 131 - maxMajorVersion = "11"; 132 - minMajorVersion = "6"; 133 - }; 134 - }; 135 - 136 31 # Added support for Clang 14 137 32 # https://docs.nvidia.com/cuda/archive/11.8.0/cuda-installation-guide-linux/index.html#system-requirements 138 33 "11.8" = {
+6 -15
pkgs/development/cuda-modules/_cuda/fixups/cudnn.nix
··· 1 1 { 2 2 cudaOlder, 3 - cudatoolkit, 4 3 cudaMajorMinorVersion, 5 4 fetchurl, 6 5 lib, 7 - libcublas ? null, # cuDNN uses CUDA Toolkit on old releases, where libcublas is not available. 6 + libcublas, 8 7 patchelf, 9 8 zlib, 10 9 }: 11 10 let 12 11 inherit (lib) 13 - lists 12 + attrsets 14 13 maintainers 15 14 meta 16 15 strings ··· 33 32 "CUDA version is too new" = cudaTooNew; 34 33 }; 35 34 36 - buildInputs = 37 - prevAttrs.buildInputs or [ ] 38 - ++ [ zlib ] 39 - ++ lists.optionals finalAttrs.passthru.useCudatoolkitRunfile [ cudatoolkit ] 40 - ++ lists.optionals (!finalAttrs.passthru.useCudatoolkitRunfile) [ (libcublas.lib or null) ]; 35 + buildInputs = prevAttrs.buildInputs or [ ] ++ [ 36 + zlib 37 + (attrsets.getLib libcublas) 38 + ]; 41 39 42 40 # Tell autoPatchelf about runtime dependencies. *_infer* libraries only 43 41 # exist in CuDNN 8. ··· 55 53 ${meta.getExe patchelf} $lib/lib/libcudnn_ops_infer.so --add-needed libcublas.so --add-needed libcublasLt.so 56 54 ''; 57 55 58 - passthru = prevAttrs.passthru or { } // { 59 - useCudatoolkitRunfile = cudaOlder "11.3.999"; 60 - }; 61 - 62 56 meta = prevAttrs.meta or { } // { 63 57 homepage = "https://developer.nvidia.com/cudnn"; 64 58 maintainers = ··· 70 64 ]); 71 65 # TODO(@connorbaker): Temporary workaround to avoid changing the derivation hash since introducing more 72 66 # brokenConditions would change the derivation as they're top-level and __structuredAttrs is set. 73 - broken = 74 - prevAttrs.meta.broken or false || (finalAttrs.passthru.useCudatoolkitRunfile && libcublas == null); 75 67 teams = prevAttrs.meta.teams or [ ]; 76 68 license = { 77 69 shortName = "cuDNN EULA"; 78 70 fullName = "NVIDIA cuDNN Software License Agreement (EULA)"; 79 71 url = "https://docs.nvidia.com/deeplearning/sdk/cudnn-sla/index.html#supplement"; 80 72 free = false; 81 - redistributable = !finalAttrs.passthru.useCudatoolkitRunfile; 82 73 }; 83 74 }; 84 75 }
-6
pkgs/development/cuda-modules/_cuda/fixups/libcufile.nix
··· 1 1 { 2 - cudaOlder, 3 - lib, 4 2 libcublas, 5 3 numactl, 6 4 rdma-core, ··· 11 9 numactl 12 10 rdma-core 13 11 ]; 14 - # Before 11.7 libcufile depends on itself for some reason. 15 - autoPatchelfIgnoreMissingDeps = 16 - prevAttrs.autoPatchelfIgnoreMissingDeps or [ ] 17 - ++ lib.lists.optionals (cudaOlder "11.7") [ "libcufile.so.0" ]; 18 12 }
+5 -19
pkgs/development/cuda-modules/_cuda/fixups/libcusparse_lt.nix
··· 1 1 { 2 - cuda_cudart ? null, 3 - cudaAtLeast, 4 - cudaOlder, 5 - cudatoolkit, 2 + cuda_cudart, 6 3 lib, 7 - libcublas ? null, 4 + libcublas, 8 5 }: 9 6 finalAttrs: prevAttrs: { 10 7 buildInputs = 11 8 prevAttrs.buildInputs or [ ] 12 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 13 - ++ lib.optionals (cudaAtLeast "11.4") ( 14 - [ (libcublas.lib or null) ] 15 - # For some reason, the 1.4.x release of cusparselt requires the cudart library. 16 - ++ lib.optionals (lib.hasPrefix "1.4" finalAttrs.version) [ (cuda_cudart.lib or null) ] 17 - ); 9 + ++ [ (lib.getLib libcublas) ] 10 + # For some reason, the 1.4.x release of cusparselt requires the cudart library. 11 + ++ lib.optionals (lib.hasPrefix "1.4" finalAttrs.version) [ (lib.getLib cuda_cudart) ]; 18 12 meta = prevAttrs.meta or { } // { 19 13 description = "cuSPARSELt: A High-Performance CUDA Library for Sparse Matrix-Matrix Multiplication"; 20 14 homepage = "https://developer.nvidia.com/cusparselt-downloads"; 21 - # TODO(@connorbaker): Temporary workaround to avoid changing the derivation hash since introducing more 22 - # brokenConditions would change the derivation as they're top-level and __structuredAttrs is set. 23 - broken = 24 - prevAttrs.meta.broken or false 25 - || ( 26 - cudaAtLeast "11.4" 27 - && (libcublas == null || (lib.hasPrefix "1.4" finalAttrs.version && cuda_cudart == null)) 28 - ); 29 15 maintainers = prevAttrs.meta.maintainers or [ ] ++ [ lib.maintainers.sepiabrown ]; 30 16 teams = prevAttrs.meta.teams or [ ]; 31 17 license = lib.licenses.unfreeRedistributable // {
+5 -19
pkgs/development/cuda-modules/_cuda/fixups/libcutensor.nix
··· 1 1 { 2 - cuda_cudart ? null, 3 - cudaAtLeast, 4 - cudaOlder, 5 - cudatoolkit, 2 + cuda_cudart, 6 3 lib, 7 - libcublas ? null, 4 + libcublas, 8 5 }: 9 6 finalAttrs: prevAttrs: { 10 7 buildInputs = 11 8 prevAttrs.buildInputs or [ ] 12 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 13 - ++ lib.optionals (cudaAtLeast "11.4") ( 14 - [ (libcublas.lib or null) ] 15 - # For some reason, the 1.4.x release of cuTENSOR requires the cudart library. 16 - ++ lib.optionals (lib.hasPrefix "1.4" finalAttrs.version) [ (cuda_cudart.lib or null) ] 17 - ); 9 + ++ [ (lib.getLib libcublas) ] 10 + # For some reason, the 1.4.x release of cuTENSOR requires the cudart library. 11 + ++ lib.optionals (lib.hasPrefix "1.4" finalAttrs.version) [ (lib.getLib cuda_cudart) ]; 18 12 meta = prevAttrs.meta or { } // { 19 13 description = "cuTENSOR: A High-Performance CUDA Library For Tensor Primitives"; 20 14 homepage = "https://developer.nvidia.com/cutensor"; 21 - # TODO(@connorbaker): Temporary workaround to avoid changing the derivation hash since introducing more 22 - # brokenConditions would change the derivation as they're top-level and __structuredAttrs is set. 23 - broken = 24 - prevAttrs.meta.broken or false 25 - || ( 26 - cudaAtLeast "11.4" 27 - && (libcublas == null || (lib.hasPrefix "1.4" finalAttrs.version && cuda_cudart == null)) 28 - ); 29 15 maintainers = prevAttrs.meta.maintainers or [ ] ++ [ lib.maintainers.obsidian-systems-maintenance ]; 30 16 teams = prevAttrs.meta.teams; 31 17 license = lib.licenses.unfreeRedistributable // {
+67 -30
pkgs/development/cuda-modules/_cuda/fixups/nsight_compute.nix
··· 1 1 { 2 + cudaAtLeast, 3 + cudaMajorMinorVersion, 4 + cudaOlder, 5 + e2fsprogs, 6 + elfutils, 7 + flags, 8 + gst_all_1, 2 9 lib, 3 - qt5 ? null, 4 - qt6 ? null, 10 + libjpeg8, 11 + qt6, 5 12 rdma-core, 6 13 stdenv, 14 + ucx, 7 15 }: 8 16 prevAttrs: 9 17 let 10 - inherit (lib.strings) versionOlder versionAtLeast; 11 - inherit (prevAttrs) version; 12 - qt = if versionOlder version "2022.2.0" then qt5 else qt6; 13 - qtwayland = 14 - if lib.versions.major qt.qtbase.version == "5" then 15 - lib.getBin qt.qtwayland 16 - else 17 - lib.getLib qt.qtwayland; 18 - inherit (qt) wrapQtAppsHook qtwebview; 18 + qtwayland = lib.getLib qt6.qtwayland; 19 + inherit (qt6) wrapQtAppsHook qtwebview; 19 20 archDir = 20 21 { 21 - aarch64-linux = "linux-desktop-t210-a64"; 22 + aarch64-linux = "linux-" + (if flags.isJetsonBuild then "v4l_l4t" else "desktop") + "-t210-a64"; 22 23 x86_64-linux = "linux-desktop-glibc_2_11_3-x64"; 23 24 } 24 25 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 25 26 in 26 27 { 28 + outputs = [ "out" ]; # NOTE(@connorbaker): Force a single output so relative lookups work. 27 29 nativeBuildInputs = prevAttrs.nativeBuildInputs or [ ] ++ [ wrapQtAppsHook ]; 28 - buildInputs = prevAttrs.buildInputs or [ ] ++ [ 29 - qtwayland 30 - qtwebview 31 - (qt.qtwebengine or qt.full) 32 - rdma-core 33 - ]; 30 + buildInputs = 31 + prevAttrs.buildInputs or [ ] 32 + ++ [ 33 + qtwayland 34 + qtwebview 35 + (qt6.qtwebengine or qt6.full) 36 + rdma-core 37 + ] 38 + ++ lib.optionals (cudaMajorMinorVersion == "12.0" && stdenv.hostPlatform.isAarch64) [ 39 + libjpeg8 40 + ] 41 + ++ lib.optionals (cudaAtLeast "12.1" && cudaOlder "12.4") [ 42 + gst_all_1.gstreamer 43 + gst_all_1.gst-plugins-base 44 + ] 45 + ++ lib.optionals (cudaAtLeast "12.0" && cudaOlder "12.7") [ 46 + e2fsprogs 47 + ucx 48 + ] 49 + ++ lib.optionals (cudaMajorMinorVersion == "12.9") [ 50 + elfutils 51 + ]; 34 52 dontWrapQtApps = true; 35 53 preInstall = prevAttrs.preInstall or "" + '' 54 + if [[ -d nsight-compute ]]; then 55 + nixLog "Lifting components of Nsight Compute to the top level" 56 + mv -v nsight-compute/*/* . 57 + nixLog "Removing empty directories" 58 + rmdir -pv nsight-compute/* 59 + fi 60 + 36 61 rm -rf host/${archDir}/Mesa/ 37 62 ''; 38 - postInstall = prevAttrs.postInstall or "" + '' 39 - moveToOutput 'ncu' "''${!outputBin}/bin" 40 - moveToOutput 'ncu-ui' "''${!outputBin}/bin" 41 - moveToOutput 'host/${archDir}' "''${!outputBin}/bin" 42 - moveToOutput 'target/${archDir}' "''${!outputBin}/bin" 43 - wrapQtApp "''${!outputBin}/bin/host/${archDir}/ncu-ui.bin" 44 - ''; 63 + postInstall = 64 + prevAttrs.postInstall or "" 65 + + '' 66 + moveToOutput 'ncu' "''${!outputBin}/bin" 67 + moveToOutput 'ncu-ui' "''${!outputBin}/bin" 68 + moveToOutput 'host/${archDir}' "''${!outputBin}/bin" 69 + moveToOutput 'target/${archDir}' "''${!outputBin}/bin" 70 + wrapQtApp "''${!outputBin}/bin/host/${archDir}/ncu-ui.bin" 71 + '' 72 + # NOTE(@connorbaker): No idea what this platform is or how to patchelf for it. 73 + + lib.optionalString (flags.isJetsonBuild && cudaAtLeast "11.8" && cudaOlder "12.9") '' 74 + nixLog "Removing QNX 700 target directory for Jetson builds" 75 + rm -rfv "''${!outputBin}/target/qnx-700-t210-a64" 76 + '' 77 + + lib.optionalString (flags.isJetsonBuild && cudaAtLeast "12.8") '' 78 + nixLog "Removing QNX 800 target directory for Jetson builds" 79 + rm -rfv "''${!outputBin}/target/qnx-800-tegra-a64" 80 + ''; 81 + # lib needs libtiff.so.5, but nixpkgs provides libtiff.so.6 45 82 preFixup = prevAttrs.preFixup or "" + '' 46 - # lib needs libtiff.so.5, but nixpkgs provides libtiff.so.6 47 83 patchelf --replace-needed libtiff.so.5 libtiff.so "''${!outputBin}/bin/host/${archDir}/Plugins/imageformats/libqtiff.so" 48 84 ''; 49 85 autoPatchelfIgnoreMissingDeps = prevAttrs.autoPatchelfIgnoreMissingDeps or [ ] ++ [ 50 86 "libnvidia-ml.so.1" 51 87 ]; 52 - brokenConditions = prevAttrs.brokenConditions or { } // { 53 - "Qt 5 missing (<2022.2.0)" = !(versionOlder version "2022.2.0" -> qt5 != null); 54 - "Qt 6 missing (>=2022.2.0)" = !(versionAtLeast version "2022.2.0" -> qt6 != null); 55 - }; 88 + # NOTE(@connorbaker): It might be a problem that when nsight_compute contains hosts and targets of different 89 + # architectures, that we patchelf just the binaries matching the builder's platform; autoPatchelfHook prints 90 + # messages like 91 + # skipping [$out]/host/linux-desktop-glibc_2_11_3-x64/libQt6Core.so.6 because its architecture (x64) differs from 92 + # target (AArch64) 56 93 }
+81 -71
pkgs/development/cuda-modules/_cuda/fixups/nsight_systems.nix
··· 1 1 { 2 2 boost178, 3 3 cuda_cudart, 4 - cudaOlder, 4 + cudaAtLeast, 5 5 e2fsprogs, 6 6 gst_all_1, 7 7 lib, 8 8 nss, 9 9 numactl, 10 10 pulseaudio, 11 - qt5 ? null, 12 - qt6 ? null, 11 + qt6, 13 12 rdma-core, 14 13 stdenv, 15 14 ucx, ··· 18 17 }: 19 18 prevAttrs: 20 19 let 21 - inherit (lib.strings) versionOlder versionAtLeast; 22 - inherit (prevAttrs) version; 23 - qt = if lib.strings.versionOlder prevAttrs.version "2022.4.2.1" then qt5 else qt6; 24 - qtwayland = 25 - if lib.versions.major qt.qtbase.version == "5" then 26 - lib.getBin qt.qtwayland 27 - else 28 - lib.getLib qt.qtwayland; 29 - qtWaylandPlugins = "${qtwayland}/${qt.qtbase.qtPluginPrefix}"; 20 + qtwayland = lib.getLib qt6.qtwayland; 21 + qtWaylandPlugins = "${qtwayland}/${qt6.qtbase.qtPluginPrefix}"; 22 + # NOTE(@connorbaker): nsight_systems doesn't support Jetson, so no need for case splitting on aarch64-linux. 30 23 hostDir = 31 24 { 32 25 aarch64-linux = "host-linux-armv8"; ··· 39 32 x86_64-linux = "target-linux-x64"; 40 33 } 41 34 .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 42 - versionString = with lib.versions; "${majorMinor version}.${patch version}"; 43 35 in 44 36 { 37 + outputs = [ "out" ]; # NOTE(@connorbaker): Force a single output so relative lookups work. 38 + 45 39 # An ad hoc replacement for 46 40 # https://github.com/ConnorBaker/cuda-redist-find-features/issues/11 47 41 env = prevAttrs.env or { } // { 48 42 rmPatterns = 49 43 prevAttrs.env.rmPatterns or "" 50 44 + toString [ 51 - "nsight-systems/${versionString}/${hostDir}/lib{arrow,jpeg}*" 52 - "nsight-systems/${versionString}/${hostDir}/lib{ssl,ssh,crypto}*" 53 - "nsight-systems/${versionString}/${hostDir}/libboost*" 54 - "nsight-systems/${versionString}/${hostDir}/libexec" 55 - "nsight-systems/${versionString}/${hostDir}/libstdc*" 56 - "nsight-systems/${versionString}/${hostDir}/python/bin/python" 57 - "nsight-systems/${versionString}/${hostDir}/Mesa" 45 + "${hostDir}/lib{arrow,jpeg}*" 46 + "${hostDir}/lib{ssl,ssh,crypto}*" 47 + "${hostDir}/libboost*" 48 + "${hostDir}/libexec" 49 + "${hostDir}/libstdc*" 50 + "${hostDir}/python/bin/python" 51 + "${hostDir}/Mesa" 58 52 ]; 59 53 }; 54 + 55 + # NOTE(@connorbaker): nsight-exporter and nsight-sys are deprecated scripts wrapping nsys, it's fine to remove them. 56 + prePatch = prevAttrs.prePatch or "" + '' 57 + if [[ -d bin ]]; then 58 + nixLog "Removing bin wrapper scripts" 59 + for knownWrapper in bin/{nsys{,-ui},nsight-{exporter,sys}}; do 60 + [[ -e $knownWrapper ]] && rm -v "$knownWrapper" 61 + done 62 + unset -v knownWrapper 63 + 64 + nixLog "Removing empty bin directory" 65 + rmdir -v bin 66 + fi 67 + 68 + if [[ -d nsight-systems ]]; then 69 + nixLog "Lifting components of Nsight System to the top level" 70 + mv -v nsight-systems/*/* . 71 + nixLog "Removing empty nsight-systems directory" 72 + rmdir -pv nsight-systems/* 73 + fi 74 + ''; 75 + 60 76 postPatch = prevAttrs.postPatch or "" + '' 61 77 for path in $rmPatterns; do 62 78 rm -r "$path" 63 79 done 64 80 patchShebangs nsight-systems 65 81 ''; 66 - nativeBuildInputs = prevAttrs.nativeBuildInputs or [ ] ++ [ qt.wrapQtAppsHook ]; 82 + 83 + nativeBuildInputs = prevAttrs.nativeBuildInputs or [ ] ++ [ qt6.wrapQtAppsHook ]; 84 + 67 85 dontWrapQtApps = true; 68 - buildInputs = prevAttrs.buildInputs or [ ] ++ [ 69 - (qt.qtdeclarative or qt.full) 70 - (qt.qtsvg or qt.full) 71 - (qt.qtimageformats or qt.full) 72 - (qt.qtpositioning or qt.full) 73 - (qt.qtscxml or qt.full) 74 - (qt.qttools or qt.full) 75 - (qt.qtwebengine or qt.full) 76 - (qt.qtwayland or qt.full) 77 - boost178 78 - cuda_cudart.stubs 79 - e2fsprogs 80 - gst_all_1.gst-plugins-base 81 - gst_all_1.gstreamer 82 - nss 83 - numactl 84 - pulseaudio 85 - qt.qtbase 86 - qtWaylandPlugins 87 - rdma-core 88 - ucx 89 - wayland 90 - xorg.libXcursor 91 - xorg.libXdamage 92 - xorg.libXrandr 93 - xorg.libXtst 94 - ]; 95 86 96 - postInstall = 97 - prevAttrs.postInstall or "" 98 - # 1. Move dependencies of nsys, nsys-ui binaries to bin output 99 - # 2. Fix paths in wrapper scripts 100 - + '' 101 - moveToOutput 'nsight-systems/${versionString}/${hostDir}' "''${!outputBin}" 102 - moveToOutput 'nsight-systems/${versionString}/${targetDir}' "''${!outputBin}" 103 - moveToOutput 'nsight-systems/${versionString}/bin' "''${!outputBin}" 104 - substituteInPlace $bin/bin/nsys $bin/bin/nsys-ui \ 105 - --replace-fail 'nsight-systems-#VERSION_RSPLIT#' nsight-systems/${versionString} 106 - wrapQtApp "$bin/nsight-systems/${versionString}/${hostDir}/nsys-ui.bin" 107 - ''; 87 + buildInputs = 88 + prevAttrs.buildInputs or [ ] 89 + ++ [ 90 + (qt6.qtdeclarative or qt6.full) 91 + (qt6.qtsvg or qt6.full) 92 + (qt6.qtimageformats or qt6.full) 93 + (qt6.qtpositioning or qt6.full) 94 + (qt6.qtscxml or qt6.full) 95 + (qt6.qttools or qt6.full) 96 + (qt6.qtwebengine or qt6.full) 97 + (qt6.qtwayland or qt6.full) 98 + boost178 99 + cuda_cudart.stubs 100 + e2fsprogs 101 + gst_all_1.gst-plugins-base 102 + gst_all_1.gstreamer 103 + nss 104 + numactl 105 + pulseaudio 106 + qt6.qtbase 107 + qtWaylandPlugins 108 + rdma-core 109 + ucx 110 + wayland 111 + xorg.libXcursor 112 + xorg.libXdamage 113 + xorg.libXrandr 114 + xorg.libXtst 115 + ] 116 + # NOTE(@connorbaker): Seems to be required only for aarch64-linux. 117 + ++ lib.optionals (stdenv.hostPlatform.isAarch64 && cudaAtLeast "11.8") [ 118 + gst_all_1.gst-plugins-bad 119 + ]; 108 120 121 + postInstall = prevAttrs.postInstall or "" + '' 122 + moveToOutput '${hostDir}' "''${!outputBin}" 123 + moveToOutput '${targetDir}' "''${!outputBin}" 124 + moveToOutput 'bin' "''${!outputBin}" 125 + wrapQtApp "''${!outputBin}/${hostDir}/nsys-ui.bin" 126 + ''; 127 + 128 + # lib needs libtiff.so.5, but nixpkgs provides libtiff.so.6 109 129 preFixup = prevAttrs.preFixup or "" + '' 110 - # lib needs libtiff.so.5, but nixpkgs provides libtiff.so.6 111 - patchelf --replace-needed libtiff.so.5 libtiff.so $bin/nsight-systems/${versionString}/${hostDir}/Plugins/imageformats/libqtiff.so 130 + patchelf --replace-needed libtiff.so.5 libtiff.so "''${!outputBin}/${hostDir}/Plugins/imageformats/libqtiff.so" 112 131 ''; 113 132 114 133 autoPatchelfIgnoreMissingDeps = prevAttrs.autoPatchelfIgnoreMissingDeps or [ ] ++ [ 115 134 "libnvidia-ml.so.1" 116 135 ]; 117 - 118 - brokenConditions = prevAttrs.brokenConditions or { } // { 119 - "Qt 5 missing (<2022.4.2.1)" = !(versionOlder version "2022.4.2.1" -> qt5 != null); 120 - "Qt 6 missing (>=2022.4.2.1)" = !(versionAtLeast version "2022.4.2.1" -> qt6 != null); 121 - }; 122 - badPlatformsConditions = prevAttrs.badPlatformsConditions or { } // { 123 - # Older releases require boost 1.70, which is deprecated in Nixpkgs 124 - "CUDA too old (<11.8)" = cudaOlder "11.8"; 125 - }; 126 136 }
-1
pkgs/development/cuda-modules/_cuda/fixups/tensorrt.nix
··· 96 96 ''; 97 97 98 98 passthru = prevAttrs.passthru or { } // { 99 - useCudatoolkitRunfile = strings.versionOlder cudaMajorMinorVersion "11.3.999"; 100 99 # The CUDNN used with TensorRT. 101 100 # If null, the default cudnn derivation will be used. 102 101 # If a version is specified, the cudnn derivation with that version will be used,
-5
pkgs/development/cuda-modules/cuda-library-samples/generic.nix
··· 100 100 101 101 sourceRoot = "${finalAttrs.src.name}/cuSPARSELt/matmul"; 102 102 103 - buildInputs = prevAttrs.buildInputs or [ ] ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ]; 104 - 105 103 nativeBuildInputs = 106 104 prevAttrs.nativeBuildInputs or [ ] 107 105 ++ [ ··· 109 107 addDriverRunpath 110 108 (lib.getDev cusparselt) 111 109 (lib.getDev libcusparse) 112 - ] 113 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 114 - ++ lib.optionals (cudaAtLeast "11.4") [ 115 110 cuda_nvcc 116 111 (lib.getDev cuda_cudart) # <cuda_runtime_api.h> 117 112 ]
-11
pkgs/development/cuda-modules/cuda-samples/extension.nix
··· 5 5 }: 6 6 let 7 7 cudaVersionToHash = { 8 - "10.0" = "sha256-XAI6iiPpDVbZtFoRaP1s6VKpu9aV3bwOqqkw33QncP8="; 9 - "10.1" = "sha256-DY8E2FKCFj27jPgQEB1qE9HcLn7CfSiVGdFm+yFQE+k="; 10 - "10.2" = "sha256-JDW4i7rC2MwIRvKRmUd6UyJZI9bWNHqZijrB962N4QY="; 11 - "11.0" = "sha256-BRwQuUvJEVi1mTbVtGODH8Obt7rXFfq6eLH9wxCTe9g="; 12 - "11.1" = "sha256-kM8gFItBaTpkoT34vercmQky9qTFtsXjXMGjCMrsUc4="; 13 - "11.2" = "sha256-gX6V98dRwdAQIsvru2byDLiMswCW2lrHSBSJutyWONw="; 14 - "11.3" = "sha256-34MdMFS2cufNbZVixFdSUDFfLeuKIGFwLBL9d81acU0="; 15 - "11.4" = "sha256-Ewu+Qk6GtGXC37CCn1ZXHc0MQAuyXCGf3J6T4cucTSA="; 16 - "11.5" = "sha256-AKRZbke0K59lakhTi8dX2cR2aBuWPZkiQxyKaZTvHrI="; 17 - "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE="; 18 - # The tag 11.7 of cuda-samples does not exist 19 8 "11.8" = "sha256-7+1P8+wqTKUGbCUBXGMDO9PkxYr2+PLDx9W2hXtXbuc="; 20 9 "12.0" = "sha256-Lj2kbdVFrJo5xPYPMiE4BS7Z8gpU5JLKXVJhZABUe/g="; 21 10 "12.1" = "sha256-xE0luOMq46zVsIEWwK4xjLs7NorcTIi9gbfZPVjIlqo=";
-9
pkgs/development/cuda-modules/cuda-samples/generic.nix
··· 5 5 cudatoolkit, 6 6 cudaMajorMinorVersion, 7 7 fetchFromGitHub, 8 - fetchpatch, 9 8 freeimage, 10 9 glfw3, 11 10 hash, ··· 44 43 cudatoolkit 45 44 freeimage 46 45 glfw3 47 - ]; 48 - 49 - # See https://github.com/NVIDIA/cuda-samples/issues/75. 50 - patches = lib.optionals (finalAttrs.version == "11.3") [ 51 - (fetchpatch { 52 - url = "https://github.com/NVIDIA/cuda-samples/commit/5c3ec60faeb7a3c4ad9372c99114d7bb922fda8d.patch"; 53 - hash = "sha256-0XxdmNK9MPpHwv8+qECJTvXGlFxc+fIbta4ynYprfpU="; 54 - }) 55 46 ]; 56 47 57 48 enableParallelBuilding = true;
-4
pkgs/development/cuda-modules/cuda/extension.nix
··· 7 7 # https://developer.download.nvidia.com/compute/cuda/redist/ 8 8 # Maps a cuda version to the specific version of the manifest. 9 9 cudaVersionMap = { 10 - "11.4" = "11.4.4"; 11 - "11.5" = "11.5.2"; 12 - "11.6" = "11.6.2"; 13 - "11.7" = "11.7.1"; 14 10 "11.8" = "11.8.0"; 15 11 "12.0" = "12.0.1"; 16 12 "12.1" = "12.1.1";
-1212
pkgs/development/cuda-modules/cuda/manifests/feature_11.4.4.json
··· 1 - { 2 - "cuda_cccl": { 3 - "linux-ppc64le": { 4 - "outputs": { 5 - "bin": false, 6 - "dev": true, 7 - "doc": false, 8 - "lib": false, 9 - "sample": false, 10 - "static": false 11 - } 12 - }, 13 - "linux-sbsa": { 14 - "outputs": { 15 - "bin": false, 16 - "dev": true, 17 - "doc": false, 18 - "lib": false, 19 - "sample": false, 20 - "static": false 21 - } 22 - }, 23 - "linux-x86_64": { 24 - "outputs": { 25 - "bin": false, 26 - "dev": true, 27 - "doc": false, 28 - "lib": false, 29 - "sample": false, 30 - "static": false 31 - } 32 - }, 33 - "windows-x86_64": { 34 - "outputs": { 35 - "bin": false, 36 - "dev": true, 37 - "doc": false, 38 - "lib": false, 39 - "sample": false, 40 - "static": false 41 - } 42 - } 43 - }, 44 - "cuda_cudart": { 45 - "linux-ppc64le": { 46 - "outputs": { 47 - "bin": false, 48 - "dev": true, 49 - "doc": false, 50 - "lib": true, 51 - "sample": false, 52 - "static": true 53 - } 54 - }, 55 - "linux-sbsa": { 56 - "outputs": { 57 - "bin": false, 58 - "dev": true, 59 - "doc": false, 60 - "lib": true, 61 - "sample": false, 62 - "static": true 63 - } 64 - }, 65 - "linux-x86_64": { 66 - "outputs": { 67 - "bin": false, 68 - "dev": true, 69 - "doc": false, 70 - "lib": true, 71 - "sample": false, 72 - "static": true 73 - } 74 - }, 75 - "windows-x86_64": { 76 - "outputs": { 77 - "bin": false, 78 - "dev": true, 79 - "doc": false, 80 - "lib": false, 81 - "sample": false, 82 - "static": false 83 - } 84 - } 85 - }, 86 - "cuda_cuobjdump": { 87 - "linux-ppc64le": { 88 - "outputs": { 89 - "bin": true, 90 - "dev": false, 91 - "doc": false, 92 - "lib": false, 93 - "sample": false, 94 - "static": false 95 - } 96 - }, 97 - "linux-sbsa": { 98 - "outputs": { 99 - "bin": true, 100 - "dev": false, 101 - "doc": false, 102 - "lib": false, 103 - "sample": false, 104 - "static": false 105 - } 106 - }, 107 - "linux-x86_64": { 108 - "outputs": { 109 - "bin": true, 110 - "dev": false, 111 - "doc": false, 112 - "lib": false, 113 - "sample": false, 114 - "static": false 115 - } 116 - }, 117 - "windows-x86_64": { 118 - "outputs": { 119 - "bin": true, 120 - "dev": false, 121 - "doc": false, 122 - "lib": false, 123 - "sample": false, 124 - "static": false 125 - } 126 - } 127 - }, 128 - "cuda_cupti": { 129 - "linux-ppc64le": { 130 - "outputs": { 131 - "bin": false, 132 - "dev": true, 133 - "doc": false, 134 - "lib": true, 135 - "sample": true, 136 - "static": false 137 - } 138 - }, 139 - "linux-sbsa": { 140 - "outputs": { 141 - "bin": false, 142 - "dev": true, 143 - "doc": false, 144 - "lib": true, 145 - "sample": true, 146 - "static": false 147 - } 148 - }, 149 - "linux-x86_64": { 150 - "outputs": { 151 - "bin": false, 152 - "dev": true, 153 - "doc": false, 154 - "lib": true, 155 - "sample": true, 156 - "static": true 157 - } 158 - }, 159 - "windows-x86_64": { 160 - "outputs": { 161 - "bin": false, 162 - "dev": true, 163 - "doc": false, 164 - "lib": false, 165 - "sample": true, 166 - "static": false 167 - } 168 - } 169 - }, 170 - "cuda_cuxxfilt": { 171 - "linux-ppc64le": { 172 - "outputs": { 173 - "bin": true, 174 - "dev": true, 175 - "doc": false, 176 - "lib": false, 177 - "sample": false, 178 - "static": true 179 - } 180 - }, 181 - "linux-sbsa": { 182 - "outputs": { 183 - "bin": true, 184 - "dev": true, 185 - "doc": false, 186 - "lib": false, 187 - "sample": false, 188 - "static": true 189 - } 190 - }, 191 - "linux-x86_64": { 192 - "outputs": { 193 - "bin": true, 194 - "dev": true, 195 - "doc": false, 196 - "lib": false, 197 - "sample": false, 198 - "static": true 199 - } 200 - }, 201 - "windows-x86_64": { 202 - "outputs": { 203 - "bin": true, 204 - "dev": true, 205 - "doc": false, 206 - "lib": false, 207 - "sample": false, 208 - "static": false 209 - } 210 - } 211 - }, 212 - "cuda_demo_suite": { 213 - "linux-x86_64": { 214 - "outputs": { 215 - "bin": false, 216 - "dev": false, 217 - "doc": false, 218 - "lib": false, 219 - "sample": false, 220 - "static": false 221 - } 222 - }, 223 - "windows-x86_64": { 224 - "outputs": { 225 - "bin": false, 226 - "dev": false, 227 - "doc": false, 228 - "lib": false, 229 - "sample": false, 230 - "static": false 231 - } 232 - } 233 - }, 234 - "cuda_documentation": { 235 - "linux-ppc64le": { 236 - "outputs": { 237 - "bin": false, 238 - "dev": false, 239 - "doc": false, 240 - "lib": false, 241 - "sample": false, 242 - "static": false 243 - } 244 - }, 245 - "linux-sbsa": { 246 - "outputs": { 247 - "bin": false, 248 - "dev": false, 249 - "doc": false, 250 - "lib": false, 251 - "sample": false, 252 - "static": false 253 - } 254 - }, 255 - "linux-x86_64": { 256 - "outputs": { 257 - "bin": false, 258 - "dev": false, 259 - "doc": false, 260 - "lib": false, 261 - "sample": false, 262 - "static": false 263 - } 264 - }, 265 - "windows-x86_64": { 266 - "outputs": { 267 - "bin": false, 268 - "dev": false, 269 - "doc": false, 270 - "lib": false, 271 - "sample": false, 272 - "static": false 273 - } 274 - } 275 - }, 276 - "cuda_gdb": { 277 - "linux-ppc64le": { 278 - "outputs": { 279 - "bin": true, 280 - "dev": false, 281 - "doc": false, 282 - "lib": false, 283 - "sample": false, 284 - "static": false 285 - } 286 - }, 287 - "linux-sbsa": { 288 - "outputs": { 289 - "bin": true, 290 - "dev": false, 291 - "doc": false, 292 - "lib": false, 293 - "sample": false, 294 - "static": false 295 - } 296 - }, 297 - "linux-x86_64": { 298 - "outputs": { 299 - "bin": true, 300 - "dev": false, 301 - "doc": false, 302 - "lib": false, 303 - "sample": false, 304 - "static": false 305 - } 306 - } 307 - }, 308 - "cuda_memcheck": { 309 - "linux-ppc64le": { 310 - "outputs": { 311 - "bin": true, 312 - "dev": false, 313 - "doc": false, 314 - "lib": false, 315 - "sample": false, 316 - "static": false 317 - } 318 - }, 319 - "linux-x86_64": { 320 - "outputs": { 321 - "bin": true, 322 - "dev": false, 323 - "doc": false, 324 - "lib": false, 325 - "sample": false, 326 - "static": false 327 - } 328 - }, 329 - "windows-x86_64": { 330 - "outputs": { 331 - "bin": true, 332 - "dev": false, 333 - "doc": false, 334 - "lib": false, 335 - "sample": false, 336 - "static": false 337 - } 338 - } 339 - }, 340 - "cuda_nsight": { 341 - "linux-ppc64le": { 342 - "outputs": { 343 - "bin": true, 344 - "dev": false, 345 - "doc": false, 346 - "lib": false, 347 - "sample": false, 348 - "static": false 349 - } 350 - }, 351 - "linux-x86_64": { 352 - "outputs": { 353 - "bin": true, 354 - "dev": false, 355 - "doc": false, 356 - "lib": false, 357 - "sample": false, 358 - "static": false 359 - } 360 - } 361 - }, 362 - "cuda_nvcc": { 363 - "linux-ppc64le": { 364 - "outputs": { 365 - "bin": true, 366 - "dev": true, 367 - "doc": false, 368 - "lib": false, 369 - "sample": false, 370 - "static": true 371 - } 372 - }, 373 - "linux-sbsa": { 374 - "outputs": { 375 - "bin": true, 376 - "dev": true, 377 - "doc": false, 378 - "lib": false, 379 - "sample": false, 380 - "static": true 381 - } 382 - }, 383 - "linux-x86_64": { 384 - "outputs": { 385 - "bin": true, 386 - "dev": true, 387 - "doc": false, 388 - "lib": false, 389 - "sample": false, 390 - "static": true 391 - } 392 - }, 393 - "windows-x86_64": { 394 - "outputs": { 395 - "bin": true, 396 - "dev": true, 397 - "doc": false, 398 - "lib": false, 399 - "sample": false, 400 - "static": false 401 - } 402 - } 403 - }, 404 - "cuda_nvdisasm": { 405 - "linux-ppc64le": { 406 - "outputs": { 407 - "bin": true, 408 - "dev": false, 409 - "doc": false, 410 - "lib": false, 411 - "sample": false, 412 - "static": false 413 - } 414 - }, 415 - "linux-sbsa": { 416 - "outputs": { 417 - "bin": true, 418 - "dev": false, 419 - "doc": false, 420 - "lib": false, 421 - "sample": false, 422 - "static": false 423 - } 424 - }, 425 - "linux-x86_64": { 426 - "outputs": { 427 - "bin": true, 428 - "dev": false, 429 - "doc": false, 430 - "lib": false, 431 - "sample": false, 432 - "static": false 433 - } 434 - }, 435 - "windows-x86_64": { 436 - "outputs": { 437 - "bin": true, 438 - "dev": false, 439 - "doc": false, 440 - "lib": false, 441 - "sample": false, 442 - "static": false 443 - } 444 - } 445 - }, 446 - "cuda_nvml_dev": { 447 - "linux-ppc64le": { 448 - "outputs": { 449 - "bin": false, 450 - "dev": true, 451 - "doc": false, 452 - "lib": true, 453 - "sample": false, 454 - "static": false 455 - } 456 - }, 457 - "linux-sbsa": { 458 - "outputs": { 459 - "bin": false, 460 - "dev": true, 461 - "doc": false, 462 - "lib": true, 463 - "sample": false, 464 - "static": false 465 - } 466 - }, 467 - "linux-x86_64": { 468 - "outputs": { 469 - "bin": false, 470 - "dev": true, 471 - "doc": false, 472 - "lib": true, 473 - "sample": false, 474 - "static": false 475 - } 476 - }, 477 - "windows-x86_64": { 478 - "outputs": { 479 - "bin": false, 480 - "dev": true, 481 - "doc": false, 482 - "lib": false, 483 - "sample": false, 484 - "static": false 485 - } 486 - } 487 - }, 488 - "cuda_nvprof": { 489 - "linux-ppc64le": { 490 - "outputs": { 491 - "bin": true, 492 - "dev": true, 493 - "doc": false, 494 - "lib": true, 495 - "sample": false, 496 - "static": false 497 - } 498 - }, 499 - "linux-sbsa": { 500 - "outputs": { 501 - "bin": false, 502 - "dev": true, 503 - "doc": false, 504 - "lib": false, 505 - "sample": false, 506 - "static": false 507 - } 508 - }, 509 - "linux-x86_64": { 510 - "outputs": { 511 - "bin": true, 512 - "dev": true, 513 - "doc": false, 514 - "lib": true, 515 - "sample": false, 516 - "static": false 517 - } 518 - }, 519 - "windows-x86_64": { 520 - "outputs": { 521 - "bin": true, 522 - "dev": true, 523 - "doc": false, 524 - "lib": false, 525 - "sample": false, 526 - "static": false 527 - } 528 - } 529 - }, 530 - "cuda_nvprune": { 531 - "linux-ppc64le": { 532 - "outputs": { 533 - "bin": true, 534 - "dev": false, 535 - "doc": false, 536 - "lib": false, 537 - "sample": false, 538 - "static": false 539 - } 540 - }, 541 - "linux-sbsa": { 542 - "outputs": { 543 - "bin": true, 544 - "dev": false, 545 - "doc": false, 546 - "lib": false, 547 - "sample": false, 548 - "static": false 549 - } 550 - }, 551 - "linux-x86_64": { 552 - "outputs": { 553 - "bin": true, 554 - "dev": false, 555 - "doc": false, 556 - "lib": false, 557 - "sample": false, 558 - "static": false 559 - } 560 - }, 561 - "windows-x86_64": { 562 - "outputs": { 563 - "bin": true, 564 - "dev": false, 565 - "doc": false, 566 - "lib": false, 567 - "sample": false, 568 - "static": false 569 - } 570 - } 571 - }, 572 - "cuda_nvrtc": { 573 - "linux-ppc64le": { 574 - "outputs": { 575 - "bin": false, 576 - "dev": true, 577 - "doc": false, 578 - "lib": true, 579 - "sample": false, 580 - "static": false 581 - } 582 - }, 583 - "linux-sbsa": { 584 - "outputs": { 585 - "bin": false, 586 - "dev": true, 587 - "doc": false, 588 - "lib": true, 589 - "sample": false, 590 - "static": false 591 - } 592 - }, 593 - "linux-x86_64": { 594 - "outputs": { 595 - "bin": false, 596 - "dev": true, 597 - "doc": false, 598 - "lib": true, 599 - "sample": false, 600 - "static": false 601 - } 602 - }, 603 - "windows-x86_64": { 604 - "outputs": { 605 - "bin": false, 606 - "dev": true, 607 - "doc": false, 608 - "lib": false, 609 - "sample": false, 610 - "static": false 611 - } 612 - } 613 - }, 614 - "cuda_nvtx": { 615 - "linux-ppc64le": { 616 - "outputs": { 617 - "bin": false, 618 - "dev": true, 619 - "doc": false, 620 - "lib": true, 621 - "sample": false, 622 - "static": false 623 - } 624 - }, 625 - "linux-sbsa": { 626 - "outputs": { 627 - "bin": false, 628 - "dev": true, 629 - "doc": false, 630 - "lib": true, 631 - "sample": false, 632 - "static": false 633 - } 634 - }, 635 - "linux-x86_64": { 636 - "outputs": { 637 - "bin": false, 638 - "dev": true, 639 - "doc": false, 640 - "lib": true, 641 - "sample": false, 642 - "static": false 643 - } 644 - }, 645 - "windows-x86_64": { 646 - "outputs": { 647 - "bin": false, 648 - "dev": true, 649 - "doc": false, 650 - "lib": false, 651 - "sample": false, 652 - "static": false 653 - } 654 - } 655 - }, 656 - "cuda_nvvp": { 657 - "linux-ppc64le": { 658 - "outputs": { 659 - "bin": true, 660 - "dev": false, 661 - "doc": false, 662 - "lib": false, 663 - "sample": false, 664 - "static": false 665 - } 666 - }, 667 - "linux-x86_64": { 668 - "outputs": { 669 - "bin": true, 670 - "dev": false, 671 - "doc": false, 672 - "lib": false, 673 - "sample": false, 674 - "static": false 675 - } 676 - }, 677 - "windows-x86_64": { 678 - "outputs": { 679 - "bin": true, 680 - "dev": false, 681 - "doc": false, 682 - "lib": false, 683 - "sample": false, 684 - "static": false 685 - } 686 - } 687 - }, 688 - "cuda_sanitizer_api": { 689 - "linux-ppc64le": { 690 - "outputs": { 691 - "bin": true, 692 - "dev": false, 693 - "doc": false, 694 - "lib": false, 695 - "sample": false, 696 - "static": false 697 - } 698 - }, 699 - "linux-sbsa": { 700 - "outputs": { 701 - "bin": true, 702 - "dev": false, 703 - "doc": false, 704 - "lib": false, 705 - "sample": false, 706 - "static": false 707 - } 708 - }, 709 - "linux-x86_64": { 710 - "outputs": { 711 - "bin": true, 712 - "dev": false, 713 - "doc": false, 714 - "lib": false, 715 - "sample": false, 716 - "static": false 717 - } 718 - }, 719 - "windows-x86_64": { 720 - "outputs": { 721 - "bin": false, 722 - "dev": false, 723 - "doc": false, 724 - "lib": false, 725 - "sample": false, 726 - "static": false 727 - } 728 - } 729 - }, 730 - "fabricmanager": { 731 - "linux-x86_64": { 732 - "outputs": { 733 - "bin": true, 734 - "dev": true, 735 - "doc": false, 736 - "lib": true, 737 - "sample": false, 738 - "static": false 739 - } 740 - } 741 - }, 742 - "libcublas": { 743 - "linux-ppc64le": { 744 - "outputs": { 745 - "bin": false, 746 - "dev": true, 747 - "doc": false, 748 - "lib": true, 749 - "sample": false, 750 - "static": true 751 - } 752 - }, 753 - "linux-sbsa": { 754 - "outputs": { 755 - "bin": false, 756 - "dev": true, 757 - "doc": false, 758 - "lib": true, 759 - "sample": false, 760 - "static": true 761 - } 762 - }, 763 - "linux-x86_64": { 764 - "outputs": { 765 - "bin": false, 766 - "dev": true, 767 - "doc": false, 768 - "lib": true, 769 - "sample": false, 770 - "static": true 771 - } 772 - }, 773 - "windows-x86_64": { 774 - "outputs": { 775 - "bin": false, 776 - "dev": true, 777 - "doc": false, 778 - "lib": false, 779 - "sample": false, 780 - "static": false 781 - } 782 - } 783 - }, 784 - "libcufft": { 785 - "linux-ppc64le": { 786 - "outputs": { 787 - "bin": false, 788 - "dev": true, 789 - "doc": false, 790 - "lib": true, 791 - "sample": false, 792 - "static": true 793 - } 794 - }, 795 - "linux-sbsa": { 796 - "outputs": { 797 - "bin": false, 798 - "dev": true, 799 - "doc": false, 800 - "lib": true, 801 - "sample": false, 802 - "static": true 803 - } 804 - }, 805 - "linux-x86_64": { 806 - "outputs": { 807 - "bin": false, 808 - "dev": true, 809 - "doc": false, 810 - "lib": true, 811 - "sample": false, 812 - "static": true 813 - } 814 - }, 815 - "windows-x86_64": { 816 - "outputs": { 817 - "bin": false, 818 - "dev": true, 819 - "doc": false, 820 - "lib": false, 821 - "sample": false, 822 - "static": false 823 - } 824 - } 825 - }, 826 - "libcufile": { 827 - "linux-x86_64": { 828 - "outputs": { 829 - "bin": false, 830 - "dev": true, 831 - "doc": false, 832 - "lib": true, 833 - "sample": true, 834 - "static": true 835 - } 836 - } 837 - }, 838 - "libcurand": { 839 - "linux-ppc64le": { 840 - "outputs": { 841 - "bin": false, 842 - "dev": true, 843 - "doc": false, 844 - "lib": true, 845 - "sample": false, 846 - "static": true 847 - } 848 - }, 849 - "linux-sbsa": { 850 - "outputs": { 851 - "bin": false, 852 - "dev": true, 853 - "doc": false, 854 - "lib": true, 855 - "sample": false, 856 - "static": true 857 - } 858 - }, 859 - "linux-x86_64": { 860 - "outputs": { 861 - "bin": false, 862 - "dev": true, 863 - "doc": false, 864 - "lib": true, 865 - "sample": false, 866 - "static": true 867 - } 868 - }, 869 - "windows-x86_64": { 870 - "outputs": { 871 - "bin": false, 872 - "dev": true, 873 - "doc": false, 874 - "lib": false, 875 - "sample": false, 876 - "static": false 877 - } 878 - } 879 - }, 880 - "libcusolver": { 881 - "linux-ppc64le": { 882 - "outputs": { 883 - "bin": false, 884 - "dev": true, 885 - "doc": false, 886 - "lib": true, 887 - "sample": false, 888 - "static": true 889 - } 890 - }, 891 - "linux-sbsa": { 892 - "outputs": { 893 - "bin": false, 894 - "dev": true, 895 - "doc": false, 896 - "lib": true, 897 - "sample": false, 898 - "static": true 899 - } 900 - }, 901 - "linux-x86_64": { 902 - "outputs": { 903 - "bin": false, 904 - "dev": true, 905 - "doc": false, 906 - "lib": true, 907 - "sample": false, 908 - "static": true 909 - } 910 - }, 911 - "windows-x86_64": { 912 - "outputs": { 913 - "bin": false, 914 - "dev": true, 915 - "doc": false, 916 - "lib": false, 917 - "sample": false, 918 - "static": false 919 - } 920 - } 921 - }, 922 - "libcusparse": { 923 - "linux-ppc64le": { 924 - "outputs": { 925 - "bin": false, 926 - "dev": true, 927 - "doc": false, 928 - "lib": true, 929 - "sample": false, 930 - "static": true 931 - } 932 - }, 933 - "linux-sbsa": { 934 - "outputs": { 935 - "bin": false, 936 - "dev": true, 937 - "doc": false, 938 - "lib": true, 939 - "sample": false, 940 - "static": true 941 - } 942 - }, 943 - "linux-x86_64": { 944 - "outputs": { 945 - "bin": false, 946 - "dev": true, 947 - "doc": false, 948 - "lib": true, 949 - "sample": false, 950 - "static": true 951 - } 952 - }, 953 - "windows-x86_64": { 954 - "outputs": { 955 - "bin": false, 956 - "dev": true, 957 - "doc": false, 958 - "lib": false, 959 - "sample": false, 960 - "static": false 961 - } 962 - } 963 - }, 964 - "libnpp": { 965 - "linux-ppc64le": { 966 - "outputs": { 967 - "bin": false, 968 - "dev": true, 969 - "doc": false, 970 - "lib": true, 971 - "sample": false, 972 - "static": true 973 - } 974 - }, 975 - "linux-sbsa": { 976 - "outputs": { 977 - "bin": false, 978 - "dev": true, 979 - "doc": false, 980 - "lib": true, 981 - "sample": false, 982 - "static": true 983 - } 984 - }, 985 - "linux-x86_64": { 986 - "outputs": { 987 - "bin": false, 988 - "dev": true, 989 - "doc": false, 990 - "lib": true, 991 - "sample": false, 992 - "static": true 993 - } 994 - }, 995 - "windows-x86_64": { 996 - "outputs": { 997 - "bin": false, 998 - "dev": true, 999 - "doc": false, 1000 - "lib": false, 1001 - "sample": false, 1002 - "static": false 1003 - } 1004 - } 1005 - }, 1006 - "libnvjpeg": { 1007 - "linux-ppc64le": { 1008 - "outputs": { 1009 - "bin": false, 1010 - "dev": true, 1011 - "doc": false, 1012 - "lib": true, 1013 - "sample": false, 1014 - "static": true 1015 - } 1016 - }, 1017 - "linux-sbsa": { 1018 - "outputs": { 1019 - "bin": false, 1020 - "dev": true, 1021 - "doc": false, 1022 - "lib": true, 1023 - "sample": false, 1024 - "static": true 1025 - } 1026 - }, 1027 - "linux-x86_64": { 1028 - "outputs": { 1029 - "bin": false, 1030 - "dev": true, 1031 - "doc": false, 1032 - "lib": true, 1033 - "sample": false, 1034 - "static": true 1035 - } 1036 - }, 1037 - "windows-x86_64": { 1038 - "outputs": { 1039 - "bin": false, 1040 - "dev": true, 1041 - "doc": false, 1042 - "lib": false, 1043 - "sample": false, 1044 - "static": false 1045 - } 1046 - } 1047 - }, 1048 - "nsight_compute": { 1049 - "linux-ppc64le": { 1050 - "outputs": { 1051 - "bin": true, 1052 - "dev": false, 1053 - "doc": false, 1054 - "lib": false, 1055 - "sample": false, 1056 - "static": false 1057 - } 1058 - }, 1059 - "linux-sbsa": { 1060 - "outputs": { 1061 - "bin": true, 1062 - "dev": false, 1063 - "doc": false, 1064 - "lib": false, 1065 - "sample": false, 1066 - "static": false 1067 - } 1068 - }, 1069 - "linux-x86_64": { 1070 - "outputs": { 1071 - "bin": true, 1072 - "dev": false, 1073 - "doc": false, 1074 - "lib": false, 1075 - "sample": false, 1076 - "static": false 1077 - } 1078 - }, 1079 - "windows-x86_64": { 1080 - "outputs": { 1081 - "bin": false, 1082 - "dev": false, 1083 - "doc": false, 1084 - "lib": false, 1085 - "sample": false, 1086 - "static": false 1087 - } 1088 - } 1089 - }, 1090 - "nsight_nvtx": { 1091 - "windows-x86_64": { 1092 - "outputs": { 1093 - "bin": false, 1094 - "dev": false, 1095 - "doc": false, 1096 - "lib": false, 1097 - "sample": false, 1098 - "static": false 1099 - } 1100 - } 1101 - }, 1102 - "nsight_systems": { 1103 - "linux-ppc64le": { 1104 - "outputs": { 1105 - "bin": true, 1106 - "dev": false, 1107 - "doc": false, 1108 - "lib": false, 1109 - "sample": false, 1110 - "static": false 1111 - } 1112 - }, 1113 - "linux-sbsa": { 1114 - "outputs": { 1115 - "bin": true, 1116 - "dev": false, 1117 - "doc": false, 1118 - "lib": false, 1119 - "sample": false, 1120 - "static": false 1121 - } 1122 - }, 1123 - "linux-x86_64": { 1124 - "outputs": { 1125 - "bin": true, 1126 - "dev": false, 1127 - "doc": false, 1128 - "lib": false, 1129 - "sample": false, 1130 - "static": false 1131 - } 1132 - }, 1133 - "windows-x86_64": { 1134 - "outputs": { 1135 - "bin": false, 1136 - "dev": false, 1137 - "doc": false, 1138 - "lib": false, 1139 - "sample": false, 1140 - "static": false 1141 - } 1142 - } 1143 - }, 1144 - "nsight_vse": { 1145 - "windows-x86_64": { 1146 - "outputs": { 1147 - "bin": false, 1148 - "dev": false, 1149 - "doc": false, 1150 - "lib": false, 1151 - "sample": false, 1152 - "static": false 1153 - } 1154 - } 1155 - }, 1156 - "nvidia_driver": { 1157 - "linux-ppc64le": { 1158 - "outputs": { 1159 - "bin": true, 1160 - "dev": false, 1161 - "doc": false, 1162 - "lib": true, 1163 - "sample": false, 1164 - "static": false 1165 - } 1166 - }, 1167 - "linux-sbsa": { 1168 - "outputs": { 1169 - "bin": true, 1170 - "dev": false, 1171 - "doc": false, 1172 - "lib": true, 1173 - "sample": false, 1174 - "static": false 1175 - } 1176 - }, 1177 - "linux-x86_64": { 1178 - "outputs": { 1179 - "bin": true, 1180 - "dev": false, 1181 - "doc": false, 1182 - "lib": true, 1183 - "sample": false, 1184 - "static": false 1185 - } 1186 - } 1187 - }, 1188 - "nvidia_fs": { 1189 - "linux-x86_64": { 1190 - "outputs": { 1191 - "bin": false, 1192 - "dev": false, 1193 - "doc": false, 1194 - "lib": false, 1195 - "sample": false, 1196 - "static": false 1197 - } 1198 - } 1199 - }, 1200 - "visual_studio_integration": { 1201 - "windows-x86_64": { 1202 - "outputs": { 1203 - "bin": false, 1204 - "dev": false, 1205 - "doc": false, 1206 - "lib": false, 1207 - "sample": false, 1208 - "static": false 1209 - } 1210 - } 1211 - } 1212 - }
-1224
pkgs/development/cuda-modules/cuda/manifests/feature_11.5.2.json
··· 1 - { 2 - "cuda_cccl": { 3 - "linux-ppc64le": { 4 - "outputs": { 5 - "bin": false, 6 - "dev": true, 7 - "doc": false, 8 - "lib": false, 9 - "sample": false, 10 - "static": false 11 - } 12 - }, 13 - "linux-sbsa": { 14 - "outputs": { 15 - "bin": false, 16 - "dev": true, 17 - "doc": false, 18 - "lib": false, 19 - "sample": false, 20 - "static": false 21 - } 22 - }, 23 - "linux-x86_64": { 24 - "outputs": { 25 - "bin": false, 26 - "dev": true, 27 - "doc": false, 28 - "lib": false, 29 - "sample": false, 30 - "static": false 31 - } 32 - }, 33 - "windows-x86_64": { 34 - "outputs": { 35 - "bin": false, 36 - "dev": true, 37 - "doc": false, 38 - "lib": false, 39 - "sample": false, 40 - "static": false 41 - } 42 - } 43 - }, 44 - "cuda_cudart": { 45 - "linux-ppc64le": { 46 - "outputs": { 47 - "bin": false, 48 - "dev": true, 49 - "doc": false, 50 - "lib": true, 51 - "sample": false, 52 - "static": true 53 - } 54 - }, 55 - "linux-sbsa": { 56 - "outputs": { 57 - "bin": false, 58 - "dev": true, 59 - "doc": false, 60 - "lib": true, 61 - "sample": false, 62 - "static": true 63 - } 64 - }, 65 - "linux-x86_64": { 66 - "outputs": { 67 - "bin": false, 68 - "dev": true, 69 - "doc": false, 70 - "lib": true, 71 - "sample": false, 72 - "static": true 73 - } 74 - }, 75 - "windows-x86_64": { 76 - "outputs": { 77 - "bin": false, 78 - "dev": true, 79 - "doc": false, 80 - "lib": false, 81 - "sample": false, 82 - "static": false 83 - } 84 - } 85 - }, 86 - "cuda_cuobjdump": { 87 - "linux-ppc64le": { 88 - "outputs": { 89 - "bin": true, 90 - "dev": false, 91 - "doc": false, 92 - "lib": false, 93 - "sample": false, 94 - "static": false 95 - } 96 - }, 97 - "linux-sbsa": { 98 - "outputs": { 99 - "bin": true, 100 - "dev": false, 101 - "doc": false, 102 - "lib": false, 103 - "sample": false, 104 - "static": false 105 - } 106 - }, 107 - "linux-x86_64": { 108 - "outputs": { 109 - "bin": true, 110 - "dev": false, 111 - "doc": false, 112 - "lib": false, 113 - "sample": false, 114 - "static": false 115 - } 116 - }, 117 - "windows-x86_64": { 118 - "outputs": { 119 - "bin": true, 120 - "dev": false, 121 - "doc": false, 122 - "lib": false, 123 - "sample": false, 124 - "static": false 125 - } 126 - } 127 - }, 128 - "cuda_cupti": { 129 - "linux-ppc64le": { 130 - "outputs": { 131 - "bin": false, 132 - "dev": true, 133 - "doc": false, 134 - "lib": true, 135 - "sample": true, 136 - "static": false 137 - } 138 - }, 139 - "linux-sbsa": { 140 - "outputs": { 141 - "bin": false, 142 - "dev": true, 143 - "doc": false, 144 - "lib": true, 145 - "sample": true, 146 - "static": false 147 - } 148 - }, 149 - "linux-x86_64": { 150 - "outputs": { 151 - "bin": false, 152 - "dev": true, 153 - "doc": false, 154 - "lib": true, 155 - "sample": true, 156 - "static": true 157 - } 158 - }, 159 - "windows-x86_64": { 160 - "outputs": { 161 - "bin": false, 162 - "dev": true, 163 - "doc": false, 164 - "lib": false, 165 - "sample": true, 166 - "static": false 167 - } 168 - } 169 - }, 170 - "cuda_cuxxfilt": { 171 - "linux-ppc64le": { 172 - "outputs": { 173 - "bin": true, 174 - "dev": true, 175 - "doc": false, 176 - "lib": false, 177 - "sample": false, 178 - "static": true 179 - } 180 - }, 181 - "linux-sbsa": { 182 - "outputs": { 183 - "bin": true, 184 - "dev": true, 185 - "doc": false, 186 - "lib": false, 187 - "sample": false, 188 - "static": true 189 - } 190 - }, 191 - "linux-x86_64": { 192 - "outputs": { 193 - "bin": true, 194 - "dev": true, 195 - "doc": false, 196 - "lib": false, 197 - "sample": false, 198 - "static": true 199 - } 200 - }, 201 - "windows-x86_64": { 202 - "outputs": { 203 - "bin": true, 204 - "dev": true, 205 - "doc": false, 206 - "lib": false, 207 - "sample": false, 208 - "static": false 209 - } 210 - } 211 - }, 212 - "cuda_demo_suite": { 213 - "linux-x86_64": { 214 - "outputs": { 215 - "bin": false, 216 - "dev": false, 217 - "doc": false, 218 - "lib": false, 219 - "sample": false, 220 - "static": false 221 - } 222 - }, 223 - "windows-x86_64": { 224 - "outputs": { 225 - "bin": false, 226 - "dev": false, 227 - "doc": false, 228 - "lib": false, 229 - "sample": false, 230 - "static": false 231 - } 232 - } 233 - }, 234 - "cuda_documentation": { 235 - "linux-ppc64le": { 236 - "outputs": { 237 - "bin": false, 238 - "dev": false, 239 - "doc": false, 240 - "lib": false, 241 - "sample": false, 242 - "static": false 243 - } 244 - }, 245 - "linux-sbsa": { 246 - "outputs": { 247 - "bin": false, 248 - "dev": false, 249 - "doc": false, 250 - "lib": false, 251 - "sample": false, 252 - "static": false 253 - } 254 - }, 255 - "linux-x86_64": { 256 - "outputs": { 257 - "bin": false, 258 - "dev": false, 259 - "doc": false, 260 - "lib": false, 261 - "sample": false, 262 - "static": false 263 - } 264 - }, 265 - "windows-x86_64": { 266 - "outputs": { 267 - "bin": false, 268 - "dev": false, 269 - "doc": false, 270 - "lib": false, 271 - "sample": false, 272 - "static": false 273 - } 274 - } 275 - }, 276 - "cuda_gdb": { 277 - "linux-ppc64le": { 278 - "outputs": { 279 - "bin": true, 280 - "dev": false, 281 - "doc": false, 282 - "lib": false, 283 - "sample": false, 284 - "static": false 285 - } 286 - }, 287 - "linux-sbsa": { 288 - "outputs": { 289 - "bin": true, 290 - "dev": false, 291 - "doc": false, 292 - "lib": false, 293 - "sample": false, 294 - "static": false 295 - } 296 - }, 297 - "linux-x86_64": { 298 - "outputs": { 299 - "bin": true, 300 - "dev": false, 301 - "doc": false, 302 - "lib": false, 303 - "sample": false, 304 - "static": false 305 - } 306 - } 307 - }, 308 - "cuda_memcheck": { 309 - "linux-ppc64le": { 310 - "outputs": { 311 - "bin": true, 312 - "dev": false, 313 - "doc": false, 314 - "lib": false, 315 - "sample": false, 316 - "static": false 317 - } 318 - }, 319 - "linux-x86_64": { 320 - "outputs": { 321 - "bin": true, 322 - "dev": false, 323 - "doc": false, 324 - "lib": false, 325 - "sample": false, 326 - "static": false 327 - } 328 - }, 329 - "windows-x86_64": { 330 - "outputs": { 331 - "bin": true, 332 - "dev": false, 333 - "doc": false, 334 - "lib": false, 335 - "sample": false, 336 - "static": false 337 - } 338 - } 339 - }, 340 - "cuda_nsight": { 341 - "linux-ppc64le": { 342 - "outputs": { 343 - "bin": true, 344 - "dev": false, 345 - "doc": false, 346 - "lib": false, 347 - "sample": false, 348 - "static": false 349 - } 350 - }, 351 - "linux-x86_64": { 352 - "outputs": { 353 - "bin": true, 354 - "dev": false, 355 - "doc": false, 356 - "lib": false, 357 - "sample": false, 358 - "static": false 359 - } 360 - } 361 - }, 362 - "cuda_nvcc": { 363 - "linux-ppc64le": { 364 - "outputs": { 365 - "bin": true, 366 - "dev": true, 367 - "doc": false, 368 - "lib": false, 369 - "sample": false, 370 - "static": true 371 - } 372 - }, 373 - "linux-sbsa": { 374 - "outputs": { 375 - "bin": true, 376 - "dev": true, 377 - "doc": false, 378 - "lib": false, 379 - "sample": false, 380 - "static": true 381 - } 382 - }, 383 - "linux-x86_64": { 384 - "outputs": { 385 - "bin": true, 386 - "dev": true, 387 - "doc": false, 388 - "lib": false, 389 - "sample": false, 390 - "static": true 391 - } 392 - }, 393 - "windows-x86_64": { 394 - "outputs": { 395 - "bin": true, 396 - "dev": true, 397 - "doc": false, 398 - "lib": false, 399 - "sample": false, 400 - "static": false 401 - } 402 - } 403 - }, 404 - "cuda_nvdisasm": { 405 - "linux-ppc64le": { 406 - "outputs": { 407 - "bin": true, 408 - "dev": false, 409 - "doc": false, 410 - "lib": false, 411 - "sample": false, 412 - "static": false 413 - } 414 - }, 415 - "linux-sbsa": { 416 - "outputs": { 417 - "bin": true, 418 - "dev": false, 419 - "doc": false, 420 - "lib": false, 421 - "sample": false, 422 - "static": false 423 - } 424 - }, 425 - "linux-x86_64": { 426 - "outputs": { 427 - "bin": true, 428 - "dev": false, 429 - "doc": false, 430 - "lib": false, 431 - "sample": false, 432 - "static": false 433 - } 434 - }, 435 - "windows-x86_64": { 436 - "outputs": { 437 - "bin": true, 438 - "dev": false, 439 - "doc": false, 440 - "lib": false, 441 - "sample": false, 442 - "static": false 443 - } 444 - } 445 - }, 446 - "cuda_nvml_dev": { 447 - "linux-ppc64le": { 448 - "outputs": { 449 - "bin": false, 450 - "dev": true, 451 - "doc": false, 452 - "lib": true, 453 - "sample": false, 454 - "static": false 455 - } 456 - }, 457 - "linux-sbsa": { 458 - "outputs": { 459 - "bin": false, 460 - "dev": true, 461 - "doc": false, 462 - "lib": true, 463 - "sample": false, 464 - "static": false 465 - } 466 - }, 467 - "linux-x86_64": { 468 - "outputs": { 469 - "bin": false, 470 - "dev": true, 471 - "doc": false, 472 - "lib": true, 473 - "sample": false, 474 - "static": false 475 - } 476 - }, 477 - "windows-x86_64": { 478 - "outputs": { 479 - "bin": false, 480 - "dev": true, 481 - "doc": false, 482 - "lib": false, 483 - "sample": false, 484 - "static": false 485 - } 486 - } 487 - }, 488 - "cuda_nvprof": { 489 - "linux-ppc64le": { 490 - "outputs": { 491 - "bin": true, 492 - "dev": true, 493 - "doc": false, 494 - "lib": true, 495 - "sample": false, 496 - "static": false 497 - } 498 - }, 499 - "linux-sbsa": { 500 - "outputs": { 501 - "bin": false, 502 - "dev": true, 503 - "doc": false, 504 - "lib": false, 505 - "sample": false, 506 - "static": false 507 - } 508 - }, 509 - "linux-x86_64": { 510 - "outputs": { 511 - "bin": true, 512 - "dev": true, 513 - "doc": false, 514 - "lib": true, 515 - "sample": false, 516 - "static": false 517 - } 518 - }, 519 - "windows-x86_64": { 520 - "outputs": { 521 - "bin": true, 522 - "dev": true, 523 - "doc": false, 524 - "lib": false, 525 - "sample": false, 526 - "static": false 527 - } 528 - } 529 - }, 530 - "cuda_nvprune": { 531 - "linux-ppc64le": { 532 - "outputs": { 533 - "bin": true, 534 - "dev": false, 535 - "doc": false, 536 - "lib": false, 537 - "sample": false, 538 - "static": false 539 - } 540 - }, 541 - "linux-sbsa": { 542 - "outputs": { 543 - "bin": true, 544 - "dev": false, 545 - "doc": false, 546 - "lib": false, 547 - "sample": false, 548 - "static": false 549 - } 550 - }, 551 - "linux-x86_64": { 552 - "outputs": { 553 - "bin": true, 554 - "dev": false, 555 - "doc": false, 556 - "lib": false, 557 - "sample": false, 558 - "static": false 559 - } 560 - }, 561 - "windows-x86_64": { 562 - "outputs": { 563 - "bin": true, 564 - "dev": false, 565 - "doc": false, 566 - "lib": false, 567 - "sample": false, 568 - "static": false 569 - } 570 - } 571 - }, 572 - "cuda_nvrtc": { 573 - "linux-ppc64le": { 574 - "outputs": { 575 - "bin": false, 576 - "dev": true, 577 - "doc": false, 578 - "lib": true, 579 - "sample": false, 580 - "static": true 581 - } 582 - }, 583 - "linux-sbsa": { 584 - "outputs": { 585 - "bin": false, 586 - "dev": true, 587 - "doc": false, 588 - "lib": true, 589 - "sample": false, 590 - "static": true 591 - } 592 - }, 593 - "linux-x86_64": { 594 - "outputs": { 595 - "bin": false, 596 - "dev": true, 597 - "doc": false, 598 - "lib": true, 599 - "sample": false, 600 - "static": true 601 - } 602 - }, 603 - "windows-x86_64": { 604 - "outputs": { 605 - "bin": false, 606 - "dev": true, 607 - "doc": false, 608 - "lib": false, 609 - "sample": false, 610 - "static": false 611 - } 612 - } 613 - }, 614 - "cuda_nvtx": { 615 - "linux-ppc64le": { 616 - "outputs": { 617 - "bin": false, 618 - "dev": true, 619 - "doc": false, 620 - "lib": true, 621 - "sample": false, 622 - "static": false 623 - } 624 - }, 625 - "linux-sbsa": { 626 - "outputs": { 627 - "bin": false, 628 - "dev": true, 629 - "doc": false, 630 - "lib": true, 631 - "sample": false, 632 - "static": false 633 - } 634 - }, 635 - "linux-x86_64": { 636 - "outputs": { 637 - "bin": false, 638 - "dev": true, 639 - "doc": false, 640 - "lib": true, 641 - "sample": false, 642 - "static": false 643 - } 644 - }, 645 - "windows-x86_64": { 646 - "outputs": { 647 - "bin": false, 648 - "dev": true, 649 - "doc": false, 650 - "lib": false, 651 - "sample": false, 652 - "static": false 653 - } 654 - } 655 - }, 656 - "cuda_nvvp": { 657 - "linux-ppc64le": { 658 - "outputs": { 659 - "bin": true, 660 - "dev": false, 661 - "doc": false, 662 - "lib": false, 663 - "sample": false, 664 - "static": false 665 - } 666 - }, 667 - "linux-x86_64": { 668 - "outputs": { 669 - "bin": true, 670 - "dev": false, 671 - "doc": false, 672 - "lib": false, 673 - "sample": false, 674 - "static": false 675 - } 676 - }, 677 - "windows-x86_64": { 678 - "outputs": { 679 - "bin": true, 680 - "dev": false, 681 - "doc": false, 682 - "lib": false, 683 - "sample": false, 684 - "static": false 685 - } 686 - } 687 - }, 688 - "cuda_sanitizer_api": { 689 - "linux-ppc64le": { 690 - "outputs": { 691 - "bin": true, 692 - "dev": false, 693 - "doc": false, 694 - "lib": false, 695 - "sample": false, 696 - "static": false 697 - } 698 - }, 699 - "linux-sbsa": { 700 - "outputs": { 701 - "bin": true, 702 - "dev": false, 703 - "doc": false, 704 - "lib": false, 705 - "sample": false, 706 - "static": false 707 - } 708 - }, 709 - "linux-x86_64": { 710 - "outputs": { 711 - "bin": true, 712 - "dev": false, 713 - "doc": false, 714 - "lib": false, 715 - "sample": false, 716 - "static": false 717 - } 718 - }, 719 - "windows-x86_64": { 720 - "outputs": { 721 - "bin": false, 722 - "dev": false, 723 - "doc": false, 724 - "lib": false, 725 - "sample": false, 726 - "static": false 727 - } 728 - } 729 - }, 730 - "fabricmanager": { 731 - "linux-x86_64": { 732 - "outputs": { 733 - "bin": true, 734 - "dev": true, 735 - "doc": false, 736 - "lib": true, 737 - "sample": false, 738 - "static": false 739 - } 740 - } 741 - }, 742 - "libcublas": { 743 - "linux-ppc64le": { 744 - "outputs": { 745 - "bin": false, 746 - "dev": true, 747 - "doc": false, 748 - "lib": true, 749 - "sample": false, 750 - "static": true 751 - } 752 - }, 753 - "linux-sbsa": { 754 - "outputs": { 755 - "bin": false, 756 - "dev": true, 757 - "doc": false, 758 - "lib": true, 759 - "sample": false, 760 - "static": true 761 - } 762 - }, 763 - "linux-x86_64": { 764 - "outputs": { 765 - "bin": false, 766 - "dev": true, 767 - "doc": false, 768 - "lib": true, 769 - "sample": false, 770 - "static": true 771 - } 772 - }, 773 - "windows-x86_64": { 774 - "outputs": { 775 - "bin": false, 776 - "dev": true, 777 - "doc": false, 778 - "lib": false, 779 - "sample": false, 780 - "static": false 781 - } 782 - } 783 - }, 784 - "libcufft": { 785 - "linux-ppc64le": { 786 - "outputs": { 787 - "bin": false, 788 - "dev": true, 789 - "doc": false, 790 - "lib": true, 791 - "sample": false, 792 - "static": true 793 - } 794 - }, 795 - "linux-sbsa": { 796 - "outputs": { 797 - "bin": false, 798 - "dev": true, 799 - "doc": false, 800 - "lib": true, 801 - "sample": false, 802 - "static": true 803 - } 804 - }, 805 - "linux-x86_64": { 806 - "outputs": { 807 - "bin": false, 808 - "dev": true, 809 - "doc": false, 810 - "lib": true, 811 - "sample": false, 812 - "static": true 813 - } 814 - }, 815 - "windows-x86_64": { 816 - "outputs": { 817 - "bin": false, 818 - "dev": true, 819 - "doc": false, 820 - "lib": false, 821 - "sample": false, 822 - "static": false 823 - } 824 - } 825 - }, 826 - "libcufile": { 827 - "linux-x86_64": { 828 - "outputs": { 829 - "bin": false, 830 - "dev": true, 831 - "doc": false, 832 - "lib": true, 833 - "sample": true, 834 - "static": true 835 - } 836 - } 837 - }, 838 - "libcurand": { 839 - "linux-ppc64le": { 840 - "outputs": { 841 - "bin": false, 842 - "dev": true, 843 - "doc": false, 844 - "lib": true, 845 - "sample": false, 846 - "static": true 847 - } 848 - }, 849 - "linux-sbsa": { 850 - "outputs": { 851 - "bin": false, 852 - "dev": true, 853 - "doc": false, 854 - "lib": true, 855 - "sample": false, 856 - "static": true 857 - } 858 - }, 859 - "linux-x86_64": { 860 - "outputs": { 861 - "bin": false, 862 - "dev": true, 863 - "doc": false, 864 - "lib": true, 865 - "sample": false, 866 - "static": true 867 - } 868 - }, 869 - "windows-x86_64": { 870 - "outputs": { 871 - "bin": false, 872 - "dev": true, 873 - "doc": false, 874 - "lib": false, 875 - "sample": false, 876 - "static": false 877 - } 878 - } 879 - }, 880 - "libcusolver": { 881 - "linux-ppc64le": { 882 - "outputs": { 883 - "bin": false, 884 - "dev": true, 885 - "doc": false, 886 - "lib": true, 887 - "sample": false, 888 - "static": true 889 - } 890 - }, 891 - "linux-sbsa": { 892 - "outputs": { 893 - "bin": false, 894 - "dev": true, 895 - "doc": false, 896 - "lib": true, 897 - "sample": false, 898 - "static": true 899 - } 900 - }, 901 - "linux-x86_64": { 902 - "outputs": { 903 - "bin": false, 904 - "dev": true, 905 - "doc": false, 906 - "lib": true, 907 - "sample": false, 908 - "static": true 909 - } 910 - }, 911 - "windows-x86_64": { 912 - "outputs": { 913 - "bin": false, 914 - "dev": true, 915 - "doc": false, 916 - "lib": false, 917 - "sample": false, 918 - "static": false 919 - } 920 - } 921 - }, 922 - "libcusparse": { 923 - "linux-ppc64le": { 924 - "outputs": { 925 - "bin": false, 926 - "dev": true, 927 - "doc": false, 928 - "lib": true, 929 - "sample": false, 930 - "static": true 931 - } 932 - }, 933 - "linux-sbsa": { 934 - "outputs": { 935 - "bin": false, 936 - "dev": true, 937 - "doc": false, 938 - "lib": true, 939 - "sample": false, 940 - "static": true 941 - } 942 - }, 943 - "linux-x86_64": { 944 - "outputs": { 945 - "bin": false, 946 - "dev": true, 947 - "doc": false, 948 - "lib": true, 949 - "sample": false, 950 - "static": true 951 - } 952 - }, 953 - "windows-x86_64": { 954 - "outputs": { 955 - "bin": false, 956 - "dev": true, 957 - "doc": false, 958 - "lib": false, 959 - "sample": false, 960 - "static": false 961 - } 962 - } 963 - }, 964 - "libnpp": { 965 - "linux-ppc64le": { 966 - "outputs": { 967 - "bin": false, 968 - "dev": true, 969 - "doc": false, 970 - "lib": true, 971 - "sample": false, 972 - "static": true 973 - } 974 - }, 975 - "linux-sbsa": { 976 - "outputs": { 977 - "bin": false, 978 - "dev": true, 979 - "doc": false, 980 - "lib": true, 981 - "sample": false, 982 - "static": true 983 - } 984 - }, 985 - "linux-x86_64": { 986 - "outputs": { 987 - "bin": false, 988 - "dev": true, 989 - "doc": false, 990 - "lib": true, 991 - "sample": false, 992 - "static": true 993 - } 994 - }, 995 - "windows-x86_64": { 996 - "outputs": { 997 - "bin": false, 998 - "dev": true, 999 - "doc": false, 1000 - "lib": false, 1001 - "sample": false, 1002 - "static": false 1003 - } 1004 - } 1005 - }, 1006 - "libnvidia_nscq": { 1007 - "linux-x86_64": { 1008 - "outputs": { 1009 - "bin": false, 1010 - "dev": false, 1011 - "doc": false, 1012 - "lib": true, 1013 - "sample": false, 1014 - "static": false 1015 - } 1016 - } 1017 - }, 1018 - "libnvjpeg": { 1019 - "linux-ppc64le": { 1020 - "outputs": { 1021 - "bin": false, 1022 - "dev": true, 1023 - "doc": false, 1024 - "lib": true, 1025 - "sample": false, 1026 - "static": true 1027 - } 1028 - }, 1029 - "linux-sbsa": { 1030 - "outputs": { 1031 - "bin": false, 1032 - "dev": true, 1033 - "doc": false, 1034 - "lib": true, 1035 - "sample": false, 1036 - "static": true 1037 - } 1038 - }, 1039 - "linux-x86_64": { 1040 - "outputs": { 1041 - "bin": false, 1042 - "dev": true, 1043 - "doc": false, 1044 - "lib": true, 1045 - "sample": false, 1046 - "static": true 1047 - } 1048 - }, 1049 - "windows-x86_64": { 1050 - "outputs": { 1051 - "bin": false, 1052 - "dev": true, 1053 - "doc": false, 1054 - "lib": false, 1055 - "sample": false, 1056 - "static": false 1057 - } 1058 - } 1059 - }, 1060 - "nsight_compute": { 1061 - "linux-ppc64le": { 1062 - "outputs": { 1063 - "bin": true, 1064 - "dev": false, 1065 - "doc": false, 1066 - "lib": false, 1067 - "sample": false, 1068 - "static": false 1069 - } 1070 - }, 1071 - "linux-sbsa": { 1072 - "outputs": { 1073 - "bin": true, 1074 - "dev": false, 1075 - "doc": false, 1076 - "lib": false, 1077 - "sample": false, 1078 - "static": false 1079 - } 1080 - }, 1081 - "linux-x86_64": { 1082 - "outputs": { 1083 - "bin": true, 1084 - "dev": false, 1085 - "doc": false, 1086 - "lib": false, 1087 - "sample": false, 1088 - "static": false 1089 - } 1090 - }, 1091 - "windows-x86_64": { 1092 - "outputs": { 1093 - "bin": false, 1094 - "dev": false, 1095 - "doc": false, 1096 - "lib": false, 1097 - "sample": false, 1098 - "static": false 1099 - } 1100 - } 1101 - }, 1102 - "nsight_nvtx": { 1103 - "windows-x86_64": { 1104 - "outputs": { 1105 - "bin": false, 1106 - "dev": false, 1107 - "doc": false, 1108 - "lib": false, 1109 - "sample": false, 1110 - "static": false 1111 - } 1112 - } 1113 - }, 1114 - "nsight_systems": { 1115 - "linux-ppc64le": { 1116 - "outputs": { 1117 - "bin": true, 1118 - "dev": false, 1119 - "doc": false, 1120 - "lib": false, 1121 - "sample": false, 1122 - "static": false 1123 - } 1124 - }, 1125 - "linux-sbsa": { 1126 - "outputs": { 1127 - "bin": true, 1128 - "dev": false, 1129 - "doc": false, 1130 - "lib": false, 1131 - "sample": false, 1132 - "static": false 1133 - } 1134 - }, 1135 - "linux-x86_64": { 1136 - "outputs": { 1137 - "bin": true, 1138 - "dev": false, 1139 - "doc": false, 1140 - "lib": false, 1141 - "sample": false, 1142 - "static": false 1143 - } 1144 - }, 1145 - "windows-x86_64": { 1146 - "outputs": { 1147 - "bin": false, 1148 - "dev": false, 1149 - "doc": false, 1150 - "lib": false, 1151 - "sample": false, 1152 - "static": false 1153 - } 1154 - } 1155 - }, 1156 - "nsight_vse": { 1157 - "windows-x86_64": { 1158 - "outputs": { 1159 - "bin": false, 1160 - "dev": false, 1161 - "doc": false, 1162 - "lib": false, 1163 - "sample": false, 1164 - "static": false 1165 - } 1166 - } 1167 - }, 1168 - "nvidia_driver": { 1169 - "linux-ppc64le": { 1170 - "outputs": { 1171 - "bin": true, 1172 - "dev": false, 1173 - "doc": false, 1174 - "lib": true, 1175 - "sample": false, 1176 - "static": false 1177 - } 1178 - }, 1179 - "linux-sbsa": { 1180 - "outputs": { 1181 - "bin": true, 1182 - "dev": false, 1183 - "doc": false, 1184 - "lib": true, 1185 - "sample": false, 1186 - "static": false 1187 - } 1188 - }, 1189 - "linux-x86_64": { 1190 - "outputs": { 1191 - "bin": true, 1192 - "dev": false, 1193 - "doc": false, 1194 - "lib": true, 1195 - "sample": false, 1196 - "static": false 1197 - } 1198 - } 1199 - }, 1200 - "nvidia_fs": { 1201 - "linux-x86_64": { 1202 - "outputs": { 1203 - "bin": false, 1204 - "dev": false, 1205 - "doc": false, 1206 - "lib": false, 1207 - "sample": false, 1208 - "static": false 1209 - } 1210 - } 1211 - }, 1212 - "visual_studio_integration": { 1213 - "windows-x86_64": { 1214 - "outputs": { 1215 - "bin": false, 1216 - "dev": false, 1217 - "doc": false, 1218 - "lib": false, 1219 - "sample": false, 1220 - "static": false 1221 - } 1222 - } 1223 - } 1224 - }
-1224
pkgs/development/cuda-modules/cuda/manifests/feature_11.6.2.json
··· 1 - { 2 - "cuda_cccl": { 3 - "linux-ppc64le": { 4 - "outputs": { 5 - "bin": false, 6 - "dev": true, 7 - "doc": false, 8 - "lib": false, 9 - "sample": false, 10 - "static": false 11 - } 12 - }, 13 - "linux-sbsa": { 14 - "outputs": { 15 - "bin": false, 16 - "dev": true, 17 - "doc": false, 18 - "lib": false, 19 - "sample": false, 20 - "static": false 21 - } 22 - }, 23 - "linux-x86_64": { 24 - "outputs": { 25 - "bin": false, 26 - "dev": true, 27 - "doc": false, 28 - "lib": false, 29 - "sample": false, 30 - "static": false 31 - } 32 - }, 33 - "windows-x86_64": { 34 - "outputs": { 35 - "bin": false, 36 - "dev": true, 37 - "doc": false, 38 - "lib": false, 39 - "sample": false, 40 - "static": false 41 - } 42 - } 43 - }, 44 - "cuda_cudart": { 45 - "linux-ppc64le": { 46 - "outputs": { 47 - "bin": false, 48 - "dev": true, 49 - "doc": false, 50 - "lib": true, 51 - "sample": false, 52 - "static": true 53 - } 54 - }, 55 - "linux-sbsa": { 56 - "outputs": { 57 - "bin": false, 58 - "dev": true, 59 - "doc": false, 60 - "lib": true, 61 - "sample": false, 62 - "static": true 63 - } 64 - }, 65 - "linux-x86_64": { 66 - "outputs": { 67 - "bin": false, 68 - "dev": true, 69 - "doc": false, 70 - "lib": true, 71 - "sample": false, 72 - "static": true 73 - } 74 - }, 75 - "windows-x86_64": { 76 - "outputs": { 77 - "bin": false, 78 - "dev": true, 79 - "doc": false, 80 - "lib": false, 81 - "sample": false, 82 - "static": false 83 - } 84 - } 85 - }, 86 - "cuda_cuobjdump": { 87 - "linux-ppc64le": { 88 - "outputs": { 89 - "bin": true, 90 - "dev": false, 91 - "doc": false, 92 - "lib": false, 93 - "sample": false, 94 - "static": false 95 - } 96 - }, 97 - "linux-sbsa": { 98 - "outputs": { 99 - "bin": true, 100 - "dev": false, 101 - "doc": false, 102 - "lib": false, 103 - "sample": false, 104 - "static": false 105 - } 106 - }, 107 - "linux-x86_64": { 108 - "outputs": { 109 - "bin": true, 110 - "dev": false, 111 - "doc": false, 112 - "lib": false, 113 - "sample": false, 114 - "static": false 115 - } 116 - }, 117 - "windows-x86_64": { 118 - "outputs": { 119 - "bin": true, 120 - "dev": false, 121 - "doc": false, 122 - "lib": false, 123 - "sample": false, 124 - "static": false 125 - } 126 - } 127 - }, 128 - "cuda_cupti": { 129 - "linux-ppc64le": { 130 - "outputs": { 131 - "bin": false, 132 - "dev": true, 133 - "doc": false, 134 - "lib": true, 135 - "sample": true, 136 - "static": false 137 - } 138 - }, 139 - "linux-sbsa": { 140 - "outputs": { 141 - "bin": false, 142 - "dev": true, 143 - "doc": false, 144 - "lib": true, 145 - "sample": true, 146 - "static": false 147 - } 148 - }, 149 - "linux-x86_64": { 150 - "outputs": { 151 - "bin": false, 152 - "dev": true, 153 - "doc": false, 154 - "lib": true, 155 - "sample": true, 156 - "static": true 157 - } 158 - }, 159 - "windows-x86_64": { 160 - "outputs": { 161 - "bin": false, 162 - "dev": true, 163 - "doc": false, 164 - "lib": false, 165 - "sample": true, 166 - "static": false 167 - } 168 - } 169 - }, 170 - "cuda_cuxxfilt": { 171 - "linux-ppc64le": { 172 - "outputs": { 173 - "bin": true, 174 - "dev": true, 175 - "doc": false, 176 - "lib": false, 177 - "sample": false, 178 - "static": true 179 - } 180 - }, 181 - "linux-sbsa": { 182 - "outputs": { 183 - "bin": true, 184 - "dev": true, 185 - "doc": false, 186 - "lib": false, 187 - "sample": false, 188 - "static": true 189 - } 190 - }, 191 - "linux-x86_64": { 192 - "outputs": { 193 - "bin": true, 194 - "dev": true, 195 - "doc": false, 196 - "lib": false, 197 - "sample": false, 198 - "static": true 199 - } 200 - }, 201 - "windows-x86_64": { 202 - "outputs": { 203 - "bin": true, 204 - "dev": true, 205 - "doc": false, 206 - "lib": false, 207 - "sample": false, 208 - "static": false 209 - } 210 - } 211 - }, 212 - "cuda_demo_suite": { 213 - "linux-x86_64": { 214 - "outputs": { 215 - "bin": false, 216 - "dev": false, 217 - "doc": false, 218 - "lib": false, 219 - "sample": false, 220 - "static": false 221 - } 222 - }, 223 - "windows-x86_64": { 224 - "outputs": { 225 - "bin": false, 226 - "dev": false, 227 - "doc": false, 228 - "lib": false, 229 - "sample": false, 230 - "static": false 231 - } 232 - } 233 - }, 234 - "cuda_documentation": { 235 - "linux-ppc64le": { 236 - "outputs": { 237 - "bin": false, 238 - "dev": false, 239 - "doc": false, 240 - "lib": false, 241 - "sample": false, 242 - "static": false 243 - } 244 - }, 245 - "linux-sbsa": { 246 - "outputs": { 247 - "bin": false, 248 - "dev": false, 249 - "doc": false, 250 - "lib": false, 251 - "sample": false, 252 - "static": false 253 - } 254 - }, 255 - "linux-x86_64": { 256 - "outputs": { 257 - "bin": false, 258 - "dev": false, 259 - "doc": false, 260 - "lib": false, 261 - "sample": false, 262 - "static": false 263 - } 264 - }, 265 - "windows-x86_64": { 266 - "outputs": { 267 - "bin": false, 268 - "dev": false, 269 - "doc": false, 270 - "lib": false, 271 - "sample": false, 272 - "static": false 273 - } 274 - } 275 - }, 276 - "cuda_gdb": { 277 - "linux-ppc64le": { 278 - "outputs": { 279 - "bin": true, 280 - "dev": false, 281 - "doc": false, 282 - "lib": false, 283 - "sample": false, 284 - "static": false 285 - } 286 - }, 287 - "linux-sbsa": { 288 - "outputs": { 289 - "bin": true, 290 - "dev": false, 291 - "doc": false, 292 - "lib": false, 293 - "sample": false, 294 - "static": false 295 - } 296 - }, 297 - "linux-x86_64": { 298 - "outputs": { 299 - "bin": true, 300 - "dev": false, 301 - "doc": false, 302 - "lib": false, 303 - "sample": false, 304 - "static": false 305 - } 306 - } 307 - }, 308 - "cuda_memcheck": { 309 - "linux-ppc64le": { 310 - "outputs": { 311 - "bin": true, 312 - "dev": false, 313 - "doc": false, 314 - "lib": false, 315 - "sample": false, 316 - "static": false 317 - } 318 - }, 319 - "linux-x86_64": { 320 - "outputs": { 321 - "bin": true, 322 - "dev": false, 323 - "doc": false, 324 - "lib": false, 325 - "sample": false, 326 - "static": false 327 - } 328 - }, 329 - "windows-x86_64": { 330 - "outputs": { 331 - "bin": true, 332 - "dev": false, 333 - "doc": false, 334 - "lib": false, 335 - "sample": false, 336 - "static": false 337 - } 338 - } 339 - }, 340 - "cuda_nsight": { 341 - "linux-ppc64le": { 342 - "outputs": { 343 - "bin": true, 344 - "dev": false, 345 - "doc": false, 346 - "lib": false, 347 - "sample": false, 348 - "static": false 349 - } 350 - }, 351 - "linux-x86_64": { 352 - "outputs": { 353 - "bin": true, 354 - "dev": false, 355 - "doc": false, 356 - "lib": false, 357 - "sample": false, 358 - "static": false 359 - } 360 - } 361 - }, 362 - "cuda_nvcc": { 363 - "linux-ppc64le": { 364 - "outputs": { 365 - "bin": true, 366 - "dev": true, 367 - "doc": false, 368 - "lib": false, 369 - "sample": false, 370 - "static": true 371 - } 372 - }, 373 - "linux-sbsa": { 374 - "outputs": { 375 - "bin": true, 376 - "dev": true, 377 - "doc": false, 378 - "lib": false, 379 - "sample": false, 380 - "static": true 381 - } 382 - }, 383 - "linux-x86_64": { 384 - "outputs": { 385 - "bin": true, 386 - "dev": true, 387 - "doc": false, 388 - "lib": false, 389 - "sample": false, 390 - "static": true 391 - } 392 - }, 393 - "windows-x86_64": { 394 - "outputs": { 395 - "bin": true, 396 - "dev": true, 397 - "doc": false, 398 - "lib": false, 399 - "sample": false, 400 - "static": false 401 - } 402 - } 403 - }, 404 - "cuda_nvdisasm": { 405 - "linux-ppc64le": { 406 - "outputs": { 407 - "bin": true, 408 - "dev": false, 409 - "doc": false, 410 - "lib": false, 411 - "sample": false, 412 - "static": false 413 - } 414 - }, 415 - "linux-sbsa": { 416 - "outputs": { 417 - "bin": true, 418 - "dev": false, 419 - "doc": false, 420 - "lib": false, 421 - "sample": false, 422 - "static": false 423 - } 424 - }, 425 - "linux-x86_64": { 426 - "outputs": { 427 - "bin": true, 428 - "dev": false, 429 - "doc": false, 430 - "lib": false, 431 - "sample": false, 432 - "static": false 433 - } 434 - }, 435 - "windows-x86_64": { 436 - "outputs": { 437 - "bin": true, 438 - "dev": false, 439 - "doc": false, 440 - "lib": false, 441 - "sample": false, 442 - "static": false 443 - } 444 - } 445 - }, 446 - "cuda_nvml_dev": { 447 - "linux-ppc64le": { 448 - "outputs": { 449 - "bin": false, 450 - "dev": true, 451 - "doc": false, 452 - "lib": true, 453 - "sample": false, 454 - "static": false 455 - } 456 - }, 457 - "linux-sbsa": { 458 - "outputs": { 459 - "bin": false, 460 - "dev": true, 461 - "doc": false, 462 - "lib": true, 463 - "sample": false, 464 - "static": false 465 - } 466 - }, 467 - "linux-x86_64": { 468 - "outputs": { 469 - "bin": false, 470 - "dev": true, 471 - "doc": false, 472 - "lib": true, 473 - "sample": false, 474 - "static": false 475 - } 476 - }, 477 - "windows-x86_64": { 478 - "outputs": { 479 - "bin": false, 480 - "dev": true, 481 - "doc": false, 482 - "lib": false, 483 - "sample": false, 484 - "static": false 485 - } 486 - } 487 - }, 488 - "cuda_nvprof": { 489 - "linux-ppc64le": { 490 - "outputs": { 491 - "bin": true, 492 - "dev": true, 493 - "doc": false, 494 - "lib": true, 495 - "sample": false, 496 - "static": false 497 - } 498 - }, 499 - "linux-sbsa": { 500 - "outputs": { 501 - "bin": false, 502 - "dev": true, 503 - "doc": false, 504 - "lib": false, 505 - "sample": false, 506 - "static": false 507 - } 508 - }, 509 - "linux-x86_64": { 510 - "outputs": { 511 - "bin": true, 512 - "dev": true, 513 - "doc": false, 514 - "lib": true, 515 - "sample": false, 516 - "static": false 517 - } 518 - }, 519 - "windows-x86_64": { 520 - "outputs": { 521 - "bin": true, 522 - "dev": true, 523 - "doc": false, 524 - "lib": false, 525 - "sample": false, 526 - "static": false 527 - } 528 - } 529 - }, 530 - "cuda_nvprune": { 531 - "linux-ppc64le": { 532 - "outputs": { 533 - "bin": true, 534 - "dev": false, 535 - "doc": false, 536 - "lib": false, 537 - "sample": false, 538 - "static": false 539 - } 540 - }, 541 - "linux-sbsa": { 542 - "outputs": { 543 - "bin": true, 544 - "dev": false, 545 - "doc": false, 546 - "lib": false, 547 - "sample": false, 548 - "static": false 549 - } 550 - }, 551 - "linux-x86_64": { 552 - "outputs": { 553 - "bin": true, 554 - "dev": false, 555 - "doc": false, 556 - "lib": false, 557 - "sample": false, 558 - "static": false 559 - } 560 - }, 561 - "windows-x86_64": { 562 - "outputs": { 563 - "bin": true, 564 - "dev": false, 565 - "doc": false, 566 - "lib": false, 567 - "sample": false, 568 - "static": false 569 - } 570 - } 571 - }, 572 - "cuda_nvrtc": { 573 - "linux-ppc64le": { 574 - "outputs": { 575 - "bin": false, 576 - "dev": true, 577 - "doc": false, 578 - "lib": true, 579 - "sample": false, 580 - "static": true 581 - } 582 - }, 583 - "linux-sbsa": { 584 - "outputs": { 585 - "bin": false, 586 - "dev": true, 587 - "doc": false, 588 - "lib": true, 589 - "sample": false, 590 - "static": true 591 - } 592 - }, 593 - "linux-x86_64": { 594 - "outputs": { 595 - "bin": false, 596 - "dev": true, 597 - "doc": false, 598 - "lib": true, 599 - "sample": false, 600 - "static": true 601 - } 602 - }, 603 - "windows-x86_64": { 604 - "outputs": { 605 - "bin": true, 606 - "dev": true, 607 - "doc": false, 608 - "lib": false, 609 - "sample": false, 610 - "static": false 611 - } 612 - } 613 - }, 614 - "cuda_nvtx": { 615 - "linux-ppc64le": { 616 - "outputs": { 617 - "bin": false, 618 - "dev": true, 619 - "doc": false, 620 - "lib": true, 621 - "sample": false, 622 - "static": false 623 - } 624 - }, 625 - "linux-sbsa": { 626 - "outputs": { 627 - "bin": false, 628 - "dev": true, 629 - "doc": false, 630 - "lib": true, 631 - "sample": false, 632 - "static": false 633 - } 634 - }, 635 - "linux-x86_64": { 636 - "outputs": { 637 - "bin": false, 638 - "dev": true, 639 - "doc": false, 640 - "lib": true, 641 - "sample": false, 642 - "static": false 643 - } 644 - }, 645 - "windows-x86_64": { 646 - "outputs": { 647 - "bin": false, 648 - "dev": true, 649 - "doc": false, 650 - "lib": false, 651 - "sample": false, 652 - "static": false 653 - } 654 - } 655 - }, 656 - "cuda_nvvp": { 657 - "linux-ppc64le": { 658 - "outputs": { 659 - "bin": true, 660 - "dev": false, 661 - "doc": false, 662 - "lib": false, 663 - "sample": false, 664 - "static": false 665 - } 666 - }, 667 - "linux-x86_64": { 668 - "outputs": { 669 - "bin": true, 670 - "dev": false, 671 - "doc": false, 672 - "lib": false, 673 - "sample": false, 674 - "static": false 675 - } 676 - }, 677 - "windows-x86_64": { 678 - "outputs": { 679 - "bin": true, 680 - "dev": false, 681 - "doc": false, 682 - "lib": false, 683 - "sample": false, 684 - "static": false 685 - } 686 - } 687 - }, 688 - "cuda_sanitizer_api": { 689 - "linux-ppc64le": { 690 - "outputs": { 691 - "bin": true, 692 - "dev": false, 693 - "doc": false, 694 - "lib": false, 695 - "sample": false, 696 - "static": false 697 - } 698 - }, 699 - "linux-sbsa": { 700 - "outputs": { 701 - "bin": true, 702 - "dev": false, 703 - "doc": false, 704 - "lib": false, 705 - "sample": false, 706 - "static": false 707 - } 708 - }, 709 - "linux-x86_64": { 710 - "outputs": { 711 - "bin": true, 712 - "dev": false, 713 - "doc": false, 714 - "lib": false, 715 - "sample": false, 716 - "static": false 717 - } 718 - }, 719 - "windows-x86_64": { 720 - "outputs": { 721 - "bin": false, 722 - "dev": false, 723 - "doc": false, 724 - "lib": false, 725 - "sample": false, 726 - "static": false 727 - } 728 - } 729 - }, 730 - "fabricmanager": { 731 - "linux-x86_64": { 732 - "outputs": { 733 - "bin": true, 734 - "dev": true, 735 - "doc": false, 736 - "lib": true, 737 - "sample": false, 738 - "static": false 739 - } 740 - } 741 - }, 742 - "libcublas": { 743 - "linux-ppc64le": { 744 - "outputs": { 745 - "bin": false, 746 - "dev": true, 747 - "doc": false, 748 - "lib": true, 749 - "sample": false, 750 - "static": true 751 - } 752 - }, 753 - "linux-sbsa": { 754 - "outputs": { 755 - "bin": false, 756 - "dev": true, 757 - "doc": false, 758 - "lib": true, 759 - "sample": false, 760 - "static": true 761 - } 762 - }, 763 - "linux-x86_64": { 764 - "outputs": { 765 - "bin": false, 766 - "dev": true, 767 - "doc": false, 768 - "lib": true, 769 - "sample": false, 770 - "static": true 771 - } 772 - }, 773 - "windows-x86_64": { 774 - "outputs": { 775 - "bin": true, 776 - "dev": true, 777 - "doc": false, 778 - "lib": false, 779 - "sample": false, 780 - "static": false 781 - } 782 - } 783 - }, 784 - "libcufft": { 785 - "linux-ppc64le": { 786 - "outputs": { 787 - "bin": false, 788 - "dev": true, 789 - "doc": false, 790 - "lib": true, 791 - "sample": false, 792 - "static": true 793 - } 794 - }, 795 - "linux-sbsa": { 796 - "outputs": { 797 - "bin": false, 798 - "dev": true, 799 - "doc": false, 800 - "lib": true, 801 - "sample": false, 802 - "static": true 803 - } 804 - }, 805 - "linux-x86_64": { 806 - "outputs": { 807 - "bin": false, 808 - "dev": true, 809 - "doc": false, 810 - "lib": true, 811 - "sample": false, 812 - "static": true 813 - } 814 - }, 815 - "windows-x86_64": { 816 - "outputs": { 817 - "bin": true, 818 - "dev": true, 819 - "doc": false, 820 - "lib": false, 821 - "sample": false, 822 - "static": false 823 - } 824 - } 825 - }, 826 - "libcufile": { 827 - "linux-x86_64": { 828 - "outputs": { 829 - "bin": false, 830 - "dev": true, 831 - "doc": false, 832 - "lib": true, 833 - "sample": true, 834 - "static": true 835 - } 836 - } 837 - }, 838 - "libcurand": { 839 - "linux-ppc64le": { 840 - "outputs": { 841 - "bin": false, 842 - "dev": true, 843 - "doc": false, 844 - "lib": true, 845 - "sample": false, 846 - "static": true 847 - } 848 - }, 849 - "linux-sbsa": { 850 - "outputs": { 851 - "bin": false, 852 - "dev": true, 853 - "doc": false, 854 - "lib": true, 855 - "sample": false, 856 - "static": true 857 - } 858 - }, 859 - "linux-x86_64": { 860 - "outputs": { 861 - "bin": false, 862 - "dev": true, 863 - "doc": false, 864 - "lib": true, 865 - "sample": false, 866 - "static": true 867 - } 868 - }, 869 - "windows-x86_64": { 870 - "outputs": { 871 - "bin": true, 872 - "dev": true, 873 - "doc": false, 874 - "lib": false, 875 - "sample": false, 876 - "static": false 877 - } 878 - } 879 - }, 880 - "libcusolver": { 881 - "linux-ppc64le": { 882 - "outputs": { 883 - "bin": false, 884 - "dev": true, 885 - "doc": false, 886 - "lib": true, 887 - "sample": false, 888 - "static": true 889 - } 890 - }, 891 - "linux-sbsa": { 892 - "outputs": { 893 - "bin": false, 894 - "dev": true, 895 - "doc": false, 896 - "lib": true, 897 - "sample": false, 898 - "static": true 899 - } 900 - }, 901 - "linux-x86_64": { 902 - "outputs": { 903 - "bin": false, 904 - "dev": true, 905 - "doc": false, 906 - "lib": true, 907 - "sample": false, 908 - "static": true 909 - } 910 - }, 911 - "windows-x86_64": { 912 - "outputs": { 913 - "bin": true, 914 - "dev": true, 915 - "doc": false, 916 - "lib": false, 917 - "sample": false, 918 - "static": false 919 - } 920 - } 921 - }, 922 - "libcusparse": { 923 - "linux-ppc64le": { 924 - "outputs": { 925 - "bin": false, 926 - "dev": true, 927 - "doc": false, 928 - "lib": true, 929 - "sample": false, 930 - "static": true 931 - } 932 - }, 933 - "linux-sbsa": { 934 - "outputs": { 935 - "bin": false, 936 - "dev": true, 937 - "doc": false, 938 - "lib": true, 939 - "sample": false, 940 - "static": true 941 - } 942 - }, 943 - "linux-x86_64": { 944 - "outputs": { 945 - "bin": false, 946 - "dev": true, 947 - "doc": false, 948 - "lib": true, 949 - "sample": false, 950 - "static": true 951 - } 952 - }, 953 - "windows-x86_64": { 954 - "outputs": { 955 - "bin": true, 956 - "dev": true, 957 - "doc": false, 958 - "lib": false, 959 - "sample": false, 960 - "static": false 961 - } 962 - } 963 - }, 964 - "libnpp": { 965 - "linux-ppc64le": { 966 - "outputs": { 967 - "bin": false, 968 - "dev": true, 969 - "doc": false, 970 - "lib": true, 971 - "sample": false, 972 - "static": true 973 - } 974 - }, 975 - "linux-sbsa": { 976 - "outputs": { 977 - "bin": false, 978 - "dev": true, 979 - "doc": false, 980 - "lib": true, 981 - "sample": false, 982 - "static": true 983 - } 984 - }, 985 - "linux-x86_64": { 986 - "outputs": { 987 - "bin": false, 988 - "dev": true, 989 - "doc": false, 990 - "lib": true, 991 - "sample": false, 992 - "static": true 993 - } 994 - }, 995 - "windows-x86_64": { 996 - "outputs": { 997 - "bin": true, 998 - "dev": true, 999 - "doc": false, 1000 - "lib": false, 1001 - "sample": false, 1002 - "static": false 1003 - } 1004 - } 1005 - }, 1006 - "libnvidia_nscq": { 1007 - "linux-x86_64": { 1008 - "outputs": { 1009 - "bin": false, 1010 - "dev": false, 1011 - "doc": false, 1012 - "lib": true, 1013 - "sample": false, 1014 - "static": false 1015 - } 1016 - } 1017 - }, 1018 - "libnvjpeg": { 1019 - "linux-ppc64le": { 1020 - "outputs": { 1021 - "bin": false, 1022 - "dev": true, 1023 - "doc": false, 1024 - "lib": true, 1025 - "sample": false, 1026 - "static": true 1027 - } 1028 - }, 1029 - "linux-sbsa": { 1030 - "outputs": { 1031 - "bin": false, 1032 - "dev": true, 1033 - "doc": false, 1034 - "lib": true, 1035 - "sample": false, 1036 - "static": true 1037 - } 1038 - }, 1039 - "linux-x86_64": { 1040 - "outputs": { 1041 - "bin": false, 1042 - "dev": true, 1043 - "doc": false, 1044 - "lib": true, 1045 - "sample": false, 1046 - "static": true 1047 - } 1048 - }, 1049 - "windows-x86_64": { 1050 - "outputs": { 1051 - "bin": true, 1052 - "dev": true, 1053 - "doc": false, 1054 - "lib": false, 1055 - "sample": false, 1056 - "static": false 1057 - } 1058 - } 1059 - }, 1060 - "nsight_compute": { 1061 - "linux-ppc64le": { 1062 - "outputs": { 1063 - "bin": true, 1064 - "dev": false, 1065 - "doc": false, 1066 - "lib": false, 1067 - "sample": false, 1068 - "static": false 1069 - } 1070 - }, 1071 - "linux-sbsa": { 1072 - "outputs": { 1073 - "bin": true, 1074 - "dev": false, 1075 - "doc": false, 1076 - "lib": false, 1077 - "sample": false, 1078 - "static": false 1079 - } 1080 - }, 1081 - "linux-x86_64": { 1082 - "outputs": { 1083 - "bin": true, 1084 - "dev": false, 1085 - "doc": false, 1086 - "lib": false, 1087 - "sample": false, 1088 - "static": false 1089 - } 1090 - }, 1091 - "windows-x86_64": { 1092 - "outputs": { 1093 - "bin": false, 1094 - "dev": false, 1095 - "doc": false, 1096 - "lib": false, 1097 - "sample": false, 1098 - "static": false 1099 - } 1100 - } 1101 - }, 1102 - "nsight_nvtx": { 1103 - "windows-x86_64": { 1104 - "outputs": { 1105 - "bin": false, 1106 - "dev": false, 1107 - "doc": false, 1108 - "lib": false, 1109 - "sample": false, 1110 - "static": false 1111 - } 1112 - } 1113 - }, 1114 - "nsight_systems": { 1115 - "linux-ppc64le": { 1116 - "outputs": { 1117 - "bin": true, 1118 - "dev": false, 1119 - "doc": false, 1120 - "lib": false, 1121 - "sample": false, 1122 - "static": false 1123 - } 1124 - }, 1125 - "linux-sbsa": { 1126 - "outputs": { 1127 - "bin": true, 1128 - "dev": false, 1129 - "doc": false, 1130 - "lib": false, 1131 - "sample": false, 1132 - "static": false 1133 - } 1134 - }, 1135 - "linux-x86_64": { 1136 - "outputs": { 1137 - "bin": true, 1138 - "dev": false, 1139 - "doc": false, 1140 - "lib": false, 1141 - "sample": false, 1142 - "static": false 1143 - } 1144 - }, 1145 - "windows-x86_64": { 1146 - "outputs": { 1147 - "bin": false, 1148 - "dev": false, 1149 - "doc": false, 1150 - "lib": false, 1151 - "sample": false, 1152 - "static": false 1153 - } 1154 - } 1155 - }, 1156 - "nsight_vse": { 1157 - "windows-x86_64": { 1158 - "outputs": { 1159 - "bin": false, 1160 - "dev": false, 1161 - "doc": false, 1162 - "lib": false, 1163 - "sample": false, 1164 - "static": false 1165 - } 1166 - } 1167 - }, 1168 - "nvidia_driver": { 1169 - "linux-ppc64le": { 1170 - "outputs": { 1171 - "bin": true, 1172 - "dev": false, 1173 - "doc": false, 1174 - "lib": true, 1175 - "sample": false, 1176 - "static": false 1177 - } 1178 - }, 1179 - "linux-sbsa": { 1180 - "outputs": { 1181 - "bin": true, 1182 - "dev": false, 1183 - "doc": false, 1184 - "lib": true, 1185 - "sample": false, 1186 - "static": false 1187 - } 1188 - }, 1189 - "linux-x86_64": { 1190 - "outputs": { 1191 - "bin": true, 1192 - "dev": false, 1193 - "doc": false, 1194 - "lib": true, 1195 - "sample": false, 1196 - "static": false 1197 - } 1198 - } 1199 - }, 1200 - "nvidia_fs": { 1201 - "linux-x86_64": { 1202 - "outputs": { 1203 - "bin": false, 1204 - "dev": false, 1205 - "doc": false, 1206 - "lib": false, 1207 - "sample": false, 1208 - "static": false 1209 - } 1210 - } 1211 - }, 1212 - "visual_studio_integration": { 1213 - "windows-x86_64": { 1214 - "outputs": { 1215 - "bin": false, 1216 - "dev": false, 1217 - "doc": false, 1218 - "lib": false, 1219 - "sample": false, 1220 - "static": false 1221 - } 1222 - } 1223 - } 1224 - }
-1244
pkgs/development/cuda-modules/cuda/manifests/feature_11.7.1.json
··· 1 - { 2 - "cuda_cccl": { 3 - "linux-ppc64le": { 4 - "outputs": { 5 - "bin": false, 6 - "dev": true, 7 - "doc": false, 8 - "lib": false, 9 - "sample": false, 10 - "static": false 11 - } 12 - }, 13 - "linux-sbsa": { 14 - "outputs": { 15 - "bin": false, 16 - "dev": true, 17 - "doc": false, 18 - "lib": false, 19 - "sample": false, 20 - "static": false 21 - } 22 - }, 23 - "linux-x86_64": { 24 - "outputs": { 25 - "bin": false, 26 - "dev": true, 27 - "doc": false, 28 - "lib": false, 29 - "sample": false, 30 - "static": false 31 - } 32 - }, 33 - "windows-x86_64": { 34 - "outputs": { 35 - "bin": false, 36 - "dev": true, 37 - "doc": false, 38 - "lib": false, 39 - "sample": false, 40 - "static": false 41 - } 42 - } 43 - }, 44 - "cuda_cudart": { 45 - "linux-ppc64le": { 46 - "outputs": { 47 - "bin": false, 48 - "dev": true, 49 - "doc": false, 50 - "lib": true, 51 - "sample": false, 52 - "static": true 53 - } 54 - }, 55 - "linux-sbsa": { 56 - "outputs": { 57 - "bin": false, 58 - "dev": true, 59 - "doc": false, 60 - "lib": true, 61 - "sample": false, 62 - "static": true 63 - } 64 - }, 65 - "linux-x86_64": { 66 - "outputs": { 67 - "bin": false, 68 - "dev": true, 69 - "doc": false, 70 - "lib": true, 71 - "sample": false, 72 - "static": true 73 - } 74 - }, 75 - "windows-x86_64": { 76 - "outputs": { 77 - "bin": true, 78 - "dev": true, 79 - "doc": false, 80 - "lib": false, 81 - "sample": false, 82 - "static": false 83 - } 84 - } 85 - }, 86 - "cuda_cuobjdump": { 87 - "linux-ppc64le": { 88 - "outputs": { 89 - "bin": true, 90 - "dev": false, 91 - "doc": false, 92 - "lib": false, 93 - "sample": false, 94 - "static": false 95 - } 96 - }, 97 - "linux-sbsa": { 98 - "outputs": { 99 - "bin": true, 100 - "dev": false, 101 - "doc": false, 102 - "lib": false, 103 - "sample": false, 104 - "static": false 105 - } 106 - }, 107 - "linux-x86_64": { 108 - "outputs": { 109 - "bin": true, 110 - "dev": false, 111 - "doc": false, 112 - "lib": false, 113 - "sample": false, 114 - "static": false 115 - } 116 - }, 117 - "windows-x86_64": { 118 - "outputs": { 119 - "bin": true, 120 - "dev": false, 121 - "doc": false, 122 - "lib": false, 123 - "sample": false, 124 - "static": false 125 - } 126 - } 127 - }, 128 - "cuda_cupti": { 129 - "linux-ppc64le": { 130 - "outputs": { 131 - "bin": false, 132 - "dev": true, 133 - "doc": false, 134 - "lib": true, 135 - "sample": true, 136 - "static": false 137 - } 138 - }, 139 - "linux-sbsa": { 140 - "outputs": { 141 - "bin": false, 142 - "dev": true, 143 - "doc": false, 144 - "lib": true, 145 - "sample": true, 146 - "static": false 147 - } 148 - }, 149 - "linux-x86_64": { 150 - "outputs": { 151 - "bin": false, 152 - "dev": true, 153 - "doc": false, 154 - "lib": true, 155 - "sample": true, 156 - "static": true 157 - } 158 - }, 159 - "windows-x86_64": { 160 - "outputs": { 161 - "bin": false, 162 - "dev": true, 163 - "doc": false, 164 - "lib": false, 165 - "sample": true, 166 - "static": false 167 - } 168 - } 169 - }, 170 - "cuda_cuxxfilt": { 171 - "linux-ppc64le": { 172 - "outputs": { 173 - "bin": true, 174 - "dev": true, 175 - "doc": false, 176 - "lib": false, 177 - "sample": false, 178 - "static": true 179 - } 180 - }, 181 - "linux-sbsa": { 182 - "outputs": { 183 - "bin": true, 184 - "dev": true, 185 - "doc": false, 186 - "lib": false, 187 - "sample": false, 188 - "static": true 189 - } 190 - }, 191 - "linux-x86_64": { 192 - "outputs": { 193 - "bin": true, 194 - "dev": true, 195 - "doc": false, 196 - "lib": false, 197 - "sample": false, 198 - "static": true 199 - } 200 - }, 201 - "windows-x86_64": { 202 - "outputs": { 203 - "bin": true, 204 - "dev": true, 205 - "doc": false, 206 - "lib": false, 207 - "sample": false, 208 - "static": false 209 - } 210 - } 211 - }, 212 - "cuda_demo_suite": { 213 - "linux-x86_64": { 214 - "outputs": { 215 - "bin": false, 216 - "dev": false, 217 - "doc": false, 218 - "lib": false, 219 - "sample": false, 220 - "static": false 221 - } 222 - }, 223 - "windows-x86_64": { 224 - "outputs": { 225 - "bin": false, 226 - "dev": false, 227 - "doc": false, 228 - "lib": false, 229 - "sample": false, 230 - "static": false 231 - } 232 - } 233 - }, 234 - "cuda_documentation": { 235 - "linux-ppc64le": { 236 - "outputs": { 237 - "bin": false, 238 - "dev": false, 239 - "doc": false, 240 - "lib": false, 241 - "sample": false, 242 - "static": false 243 - } 244 - }, 245 - "linux-sbsa": { 246 - "outputs": { 247 - "bin": false, 248 - "dev": false, 249 - "doc": false, 250 - "lib": false, 251 - "sample": false, 252 - "static": false 253 - } 254 - }, 255 - "linux-x86_64": { 256 - "outputs": { 257 - "bin": false, 258 - "dev": false, 259 - "doc": false, 260 - "lib": false, 261 - "sample": false, 262 - "static": false 263 - } 264 - }, 265 - "windows-x86_64": { 266 - "outputs": { 267 - "bin": false, 268 - "dev": false, 269 - "doc": false, 270 - "lib": false, 271 - "sample": false, 272 - "static": false 273 - } 274 - } 275 - }, 276 - "cuda_gdb": { 277 - "linux-ppc64le": { 278 - "outputs": { 279 - "bin": true, 280 - "dev": false, 281 - "doc": false, 282 - "lib": false, 283 - "sample": false, 284 - "static": false 285 - } 286 - }, 287 - "linux-sbsa": { 288 - "outputs": { 289 - "bin": true, 290 - "dev": false, 291 - "doc": false, 292 - "lib": false, 293 - "sample": false, 294 - "static": false 295 - } 296 - }, 297 - "linux-x86_64": { 298 - "outputs": { 299 - "bin": true, 300 - "dev": false, 301 - "doc": false, 302 - "lib": false, 303 - "sample": false, 304 - "static": false 305 - } 306 - } 307 - }, 308 - "cuda_memcheck": { 309 - "linux-ppc64le": { 310 - "outputs": { 311 - "bin": true, 312 - "dev": false, 313 - "doc": false, 314 - "lib": false, 315 - "sample": false, 316 - "static": false 317 - } 318 - }, 319 - "linux-x86_64": { 320 - "outputs": { 321 - "bin": true, 322 - "dev": false, 323 - "doc": false, 324 - "lib": false, 325 - "sample": false, 326 - "static": false 327 - } 328 - }, 329 - "windows-x86_64": { 330 - "outputs": { 331 - "bin": true, 332 - "dev": false, 333 - "doc": false, 334 - "lib": false, 335 - "sample": false, 336 - "static": false 337 - } 338 - } 339 - }, 340 - "cuda_nsight": { 341 - "linux-ppc64le": { 342 - "outputs": { 343 - "bin": true, 344 - "dev": false, 345 - "doc": false, 346 - "lib": false, 347 - "sample": false, 348 - "static": false 349 - } 350 - }, 351 - "linux-x86_64": { 352 - "outputs": { 353 - "bin": true, 354 - "dev": false, 355 - "doc": false, 356 - "lib": false, 357 - "sample": false, 358 - "static": false 359 - } 360 - } 361 - }, 362 - "cuda_nvcc": { 363 - "linux-ppc64le": { 364 - "outputs": { 365 - "bin": true, 366 - "dev": true, 367 - "doc": false, 368 - "lib": false, 369 - "sample": false, 370 - "static": true 371 - } 372 - }, 373 - "linux-sbsa": { 374 - "outputs": { 375 - "bin": true, 376 - "dev": true, 377 - "doc": false, 378 - "lib": false, 379 - "sample": false, 380 - "static": true 381 - } 382 - }, 383 - "linux-x86_64": { 384 - "outputs": { 385 - "bin": true, 386 - "dev": true, 387 - "doc": false, 388 - "lib": false, 389 - "sample": false, 390 - "static": true 391 - } 392 - }, 393 - "windows-x86_64": { 394 - "outputs": { 395 - "bin": true, 396 - "dev": true, 397 - "doc": false, 398 - "lib": false, 399 - "sample": false, 400 - "static": false 401 - } 402 - } 403 - }, 404 - "cuda_nvdisasm": { 405 - "linux-ppc64le": { 406 - "outputs": { 407 - "bin": true, 408 - "dev": false, 409 - "doc": false, 410 - "lib": false, 411 - "sample": false, 412 - "static": false 413 - } 414 - }, 415 - "linux-sbsa": { 416 - "outputs": { 417 - "bin": true, 418 - "dev": false, 419 - "doc": false, 420 - "lib": false, 421 - "sample": false, 422 - "static": false 423 - } 424 - }, 425 - "linux-x86_64": { 426 - "outputs": { 427 - "bin": true, 428 - "dev": false, 429 - "doc": false, 430 - "lib": false, 431 - "sample": false, 432 - "static": false 433 - } 434 - }, 435 - "windows-x86_64": { 436 - "outputs": { 437 - "bin": true, 438 - "dev": false, 439 - "doc": false, 440 - "lib": false, 441 - "sample": false, 442 - "static": false 443 - } 444 - } 445 - }, 446 - "cuda_nvml_dev": { 447 - "linux-ppc64le": { 448 - "outputs": { 449 - "bin": false, 450 - "dev": true, 451 - "doc": false, 452 - "lib": true, 453 - "sample": false, 454 - "static": false 455 - } 456 - }, 457 - "linux-sbsa": { 458 - "outputs": { 459 - "bin": false, 460 - "dev": true, 461 - "doc": false, 462 - "lib": true, 463 - "sample": false, 464 - "static": false 465 - } 466 - }, 467 - "linux-x86_64": { 468 - "outputs": { 469 - "bin": false, 470 - "dev": true, 471 - "doc": false, 472 - "lib": true, 473 - "sample": false, 474 - "static": false 475 - } 476 - }, 477 - "windows-x86_64": { 478 - "outputs": { 479 - "bin": false, 480 - "dev": true, 481 - "doc": false, 482 - "lib": false, 483 - "sample": false, 484 - "static": false 485 - } 486 - } 487 - }, 488 - "cuda_nvprof": { 489 - "linux-ppc64le": { 490 - "outputs": { 491 - "bin": true, 492 - "dev": true, 493 - "doc": false, 494 - "lib": true, 495 - "sample": false, 496 - "static": false 497 - } 498 - }, 499 - "linux-sbsa": { 500 - "outputs": { 501 - "bin": false, 502 - "dev": true, 503 - "doc": false, 504 - "lib": false, 505 - "sample": false, 506 - "static": false 507 - } 508 - }, 509 - "linux-x86_64": { 510 - "outputs": { 511 - "bin": true, 512 - "dev": true, 513 - "doc": false, 514 - "lib": true, 515 - "sample": false, 516 - "static": false 517 - } 518 - }, 519 - "windows-x86_64": { 520 - "outputs": { 521 - "bin": true, 522 - "dev": true, 523 - "doc": false, 524 - "lib": false, 525 - "sample": false, 526 - "static": false 527 - } 528 - } 529 - }, 530 - "cuda_nvprune": { 531 - "linux-ppc64le": { 532 - "outputs": { 533 - "bin": true, 534 - "dev": false, 535 - "doc": false, 536 - "lib": false, 537 - "sample": false, 538 - "static": false 539 - } 540 - }, 541 - "linux-sbsa": { 542 - "outputs": { 543 - "bin": true, 544 - "dev": false, 545 - "doc": false, 546 - "lib": false, 547 - "sample": false, 548 - "static": false 549 - } 550 - }, 551 - "linux-x86_64": { 552 - "outputs": { 553 - "bin": true, 554 - "dev": false, 555 - "doc": false, 556 - "lib": false, 557 - "sample": false, 558 - "static": false 559 - } 560 - }, 561 - "windows-x86_64": { 562 - "outputs": { 563 - "bin": true, 564 - "dev": false, 565 - "doc": false, 566 - "lib": false, 567 - "sample": false, 568 - "static": false 569 - } 570 - } 571 - }, 572 - "cuda_nvrtc": { 573 - "linux-ppc64le": { 574 - "outputs": { 575 - "bin": false, 576 - "dev": true, 577 - "doc": false, 578 - "lib": true, 579 - "sample": false, 580 - "static": true 581 - } 582 - }, 583 - "linux-sbsa": { 584 - "outputs": { 585 - "bin": false, 586 - "dev": true, 587 - "doc": false, 588 - "lib": true, 589 - "sample": false, 590 - "static": true 591 - } 592 - }, 593 - "linux-x86_64": { 594 - "outputs": { 595 - "bin": false, 596 - "dev": true, 597 - "doc": false, 598 - "lib": true, 599 - "sample": false, 600 - "static": true 601 - } 602 - }, 603 - "windows-x86_64": { 604 - "outputs": { 605 - "bin": true, 606 - "dev": true, 607 - "doc": false, 608 - "lib": false, 609 - "sample": false, 610 - "static": false 611 - } 612 - } 613 - }, 614 - "cuda_nvtx": { 615 - "linux-ppc64le": { 616 - "outputs": { 617 - "bin": false, 618 - "dev": true, 619 - "doc": false, 620 - "lib": true, 621 - "sample": false, 622 - "static": false 623 - } 624 - }, 625 - "linux-sbsa": { 626 - "outputs": { 627 - "bin": false, 628 - "dev": true, 629 - "doc": false, 630 - "lib": true, 631 - "sample": false, 632 - "static": false 633 - } 634 - }, 635 - "linux-x86_64": { 636 - "outputs": { 637 - "bin": false, 638 - "dev": true, 639 - "doc": false, 640 - "lib": true, 641 - "sample": false, 642 - "static": false 643 - } 644 - }, 645 - "windows-x86_64": { 646 - "outputs": { 647 - "bin": false, 648 - "dev": true, 649 - "doc": false, 650 - "lib": false, 651 - "sample": false, 652 - "static": false 653 - } 654 - } 655 - }, 656 - "cuda_nvvp": { 657 - "linux-ppc64le": { 658 - "outputs": { 659 - "bin": true, 660 - "dev": false, 661 - "doc": false, 662 - "lib": false, 663 - "sample": false, 664 - "static": false 665 - } 666 - }, 667 - "linux-x86_64": { 668 - "outputs": { 669 - "bin": true, 670 - "dev": false, 671 - "doc": false, 672 - "lib": false, 673 - "sample": false, 674 - "static": false 675 - } 676 - }, 677 - "windows-x86_64": { 678 - "outputs": { 679 - "bin": true, 680 - "dev": false, 681 - "doc": false, 682 - "lib": false, 683 - "sample": false, 684 - "static": false 685 - } 686 - } 687 - }, 688 - "cuda_sanitizer_api": { 689 - "linux-ppc64le": { 690 - "outputs": { 691 - "bin": true, 692 - "dev": false, 693 - "doc": false, 694 - "lib": false, 695 - "sample": false, 696 - "static": false 697 - } 698 - }, 699 - "linux-sbsa": { 700 - "outputs": { 701 - "bin": true, 702 - "dev": false, 703 - "doc": false, 704 - "lib": false, 705 - "sample": false, 706 - "static": false 707 - } 708 - }, 709 - "linux-x86_64": { 710 - "outputs": { 711 - "bin": true, 712 - "dev": false, 713 - "doc": false, 714 - "lib": false, 715 - "sample": false, 716 - "static": false 717 - } 718 - }, 719 - "windows-x86_64": { 720 - "outputs": { 721 - "bin": false, 722 - "dev": false, 723 - "doc": false, 724 - "lib": false, 725 - "sample": false, 726 - "static": false 727 - } 728 - } 729 - }, 730 - "fabricmanager": { 731 - "linux-sbsa": { 732 - "outputs": { 733 - "bin": true, 734 - "dev": true, 735 - "doc": false, 736 - "lib": true, 737 - "sample": false, 738 - "static": false 739 - } 740 - }, 741 - "linux-x86_64": { 742 - "outputs": { 743 - "bin": true, 744 - "dev": true, 745 - "doc": false, 746 - "lib": true, 747 - "sample": false, 748 - "static": false 749 - } 750 - } 751 - }, 752 - "libcublas": { 753 - "linux-ppc64le": { 754 - "outputs": { 755 - "bin": false, 756 - "dev": true, 757 - "doc": false, 758 - "lib": true, 759 - "sample": false, 760 - "static": true 761 - } 762 - }, 763 - "linux-sbsa": { 764 - "outputs": { 765 - "bin": false, 766 - "dev": true, 767 - "doc": false, 768 - "lib": true, 769 - "sample": false, 770 - "static": true 771 - } 772 - }, 773 - "linux-x86_64": { 774 - "outputs": { 775 - "bin": false, 776 - "dev": true, 777 - "doc": false, 778 - "lib": true, 779 - "sample": false, 780 - "static": true 781 - } 782 - }, 783 - "windows-x86_64": { 784 - "outputs": { 785 - "bin": true, 786 - "dev": true, 787 - "doc": false, 788 - "lib": false, 789 - "sample": false, 790 - "static": false 791 - } 792 - } 793 - }, 794 - "libcufft": { 795 - "linux-ppc64le": { 796 - "outputs": { 797 - "bin": false, 798 - "dev": true, 799 - "doc": false, 800 - "lib": true, 801 - "sample": false, 802 - "static": true 803 - } 804 - }, 805 - "linux-sbsa": { 806 - "outputs": { 807 - "bin": false, 808 - "dev": true, 809 - "doc": false, 810 - "lib": true, 811 - "sample": false, 812 - "static": true 813 - } 814 - }, 815 - "linux-x86_64": { 816 - "outputs": { 817 - "bin": false, 818 - "dev": true, 819 - "doc": false, 820 - "lib": true, 821 - "sample": false, 822 - "static": true 823 - } 824 - }, 825 - "windows-x86_64": { 826 - "outputs": { 827 - "bin": true, 828 - "dev": true, 829 - "doc": false, 830 - "lib": false, 831 - "sample": false, 832 - "static": false 833 - } 834 - } 835 - }, 836 - "libcufile": { 837 - "linux-x86_64": { 838 - "outputs": { 839 - "bin": false, 840 - "dev": true, 841 - "doc": false, 842 - "lib": true, 843 - "sample": true, 844 - "static": true 845 - } 846 - } 847 - }, 848 - "libcurand": { 849 - "linux-ppc64le": { 850 - "outputs": { 851 - "bin": false, 852 - "dev": true, 853 - "doc": false, 854 - "lib": true, 855 - "sample": false, 856 - "static": true 857 - } 858 - }, 859 - "linux-sbsa": { 860 - "outputs": { 861 - "bin": false, 862 - "dev": true, 863 - "doc": false, 864 - "lib": true, 865 - "sample": false, 866 - "static": true 867 - } 868 - }, 869 - "linux-x86_64": { 870 - "outputs": { 871 - "bin": false, 872 - "dev": true, 873 - "doc": false, 874 - "lib": true, 875 - "sample": false, 876 - "static": true 877 - } 878 - }, 879 - "windows-x86_64": { 880 - "outputs": { 881 - "bin": true, 882 - "dev": true, 883 - "doc": false, 884 - "lib": false, 885 - "sample": false, 886 - "static": false 887 - } 888 - } 889 - }, 890 - "libcusolver": { 891 - "linux-ppc64le": { 892 - "outputs": { 893 - "bin": false, 894 - "dev": true, 895 - "doc": false, 896 - "lib": true, 897 - "sample": false, 898 - "static": true 899 - } 900 - }, 901 - "linux-sbsa": { 902 - "outputs": { 903 - "bin": false, 904 - "dev": true, 905 - "doc": false, 906 - "lib": true, 907 - "sample": false, 908 - "static": true 909 - } 910 - }, 911 - "linux-x86_64": { 912 - "outputs": { 913 - "bin": false, 914 - "dev": true, 915 - "doc": false, 916 - "lib": true, 917 - "sample": false, 918 - "static": true 919 - } 920 - }, 921 - "windows-x86_64": { 922 - "outputs": { 923 - "bin": true, 924 - "dev": true, 925 - "doc": false, 926 - "lib": false, 927 - "sample": false, 928 - "static": false 929 - } 930 - } 931 - }, 932 - "libcusparse": { 933 - "linux-ppc64le": { 934 - "outputs": { 935 - "bin": false, 936 - "dev": true, 937 - "doc": false, 938 - "lib": true, 939 - "sample": false, 940 - "static": true 941 - } 942 - }, 943 - "linux-sbsa": { 944 - "outputs": { 945 - "bin": false, 946 - "dev": true, 947 - "doc": false, 948 - "lib": true, 949 - "sample": false, 950 - "static": true 951 - } 952 - }, 953 - "linux-x86_64": { 954 - "outputs": { 955 - "bin": false, 956 - "dev": true, 957 - "doc": false, 958 - "lib": true, 959 - "sample": false, 960 - "static": true 961 - } 962 - }, 963 - "windows-x86_64": { 964 - "outputs": { 965 - "bin": true, 966 - "dev": true, 967 - "doc": false, 968 - "lib": false, 969 - "sample": false, 970 - "static": false 971 - } 972 - } 973 - }, 974 - "libnpp": { 975 - "linux-ppc64le": { 976 - "outputs": { 977 - "bin": false, 978 - "dev": true, 979 - "doc": false, 980 - "lib": true, 981 - "sample": false, 982 - "static": true 983 - } 984 - }, 985 - "linux-sbsa": { 986 - "outputs": { 987 - "bin": false, 988 - "dev": true, 989 - "doc": false, 990 - "lib": true, 991 - "sample": false, 992 - "static": true 993 - } 994 - }, 995 - "linux-x86_64": { 996 - "outputs": { 997 - "bin": false, 998 - "dev": true, 999 - "doc": false, 1000 - "lib": true, 1001 - "sample": false, 1002 - "static": true 1003 - } 1004 - }, 1005 - "windows-x86_64": { 1006 - "outputs": { 1007 - "bin": true, 1008 - "dev": true, 1009 - "doc": false, 1010 - "lib": false, 1011 - "sample": false, 1012 - "static": false 1013 - } 1014 - } 1015 - }, 1016 - "libnvidia_nscq": { 1017 - "linux-sbsa": { 1018 - "outputs": { 1019 - "bin": false, 1020 - "dev": false, 1021 - "doc": false, 1022 - "lib": true, 1023 - "sample": false, 1024 - "static": false 1025 - } 1026 - }, 1027 - "linux-x86_64": { 1028 - "outputs": { 1029 - "bin": false, 1030 - "dev": false, 1031 - "doc": false, 1032 - "lib": true, 1033 - "sample": false, 1034 - "static": false 1035 - } 1036 - } 1037 - }, 1038 - "libnvjpeg": { 1039 - "linux-ppc64le": { 1040 - "outputs": { 1041 - "bin": false, 1042 - "dev": true, 1043 - "doc": false, 1044 - "lib": true, 1045 - "sample": false, 1046 - "static": true 1047 - } 1048 - }, 1049 - "linux-sbsa": { 1050 - "outputs": { 1051 - "bin": false, 1052 - "dev": true, 1053 - "doc": false, 1054 - "lib": true, 1055 - "sample": false, 1056 - "static": true 1057 - } 1058 - }, 1059 - "linux-x86_64": { 1060 - "outputs": { 1061 - "bin": false, 1062 - "dev": true, 1063 - "doc": false, 1064 - "lib": true, 1065 - "sample": false, 1066 - "static": true 1067 - } 1068 - }, 1069 - "windows-x86_64": { 1070 - "outputs": { 1071 - "bin": true, 1072 - "dev": true, 1073 - "doc": false, 1074 - "lib": false, 1075 - "sample": false, 1076 - "static": false 1077 - } 1078 - } 1079 - }, 1080 - "nsight_compute": { 1081 - "linux-ppc64le": { 1082 - "outputs": { 1083 - "bin": true, 1084 - "dev": false, 1085 - "doc": false, 1086 - "lib": false, 1087 - "sample": false, 1088 - "static": false 1089 - } 1090 - }, 1091 - "linux-sbsa": { 1092 - "outputs": { 1093 - "bin": true, 1094 - "dev": false, 1095 - "doc": false, 1096 - "lib": false, 1097 - "sample": false, 1098 - "static": false 1099 - } 1100 - }, 1101 - "linux-x86_64": { 1102 - "outputs": { 1103 - "bin": true, 1104 - "dev": false, 1105 - "doc": false, 1106 - "lib": false, 1107 - "sample": false, 1108 - "static": false 1109 - } 1110 - }, 1111 - "windows-x86_64": { 1112 - "outputs": { 1113 - "bin": false, 1114 - "dev": false, 1115 - "doc": false, 1116 - "lib": false, 1117 - "sample": false, 1118 - "static": false 1119 - } 1120 - } 1121 - }, 1122 - "nsight_nvtx": { 1123 - "windows-x86_64": { 1124 - "outputs": { 1125 - "bin": false, 1126 - "dev": false, 1127 - "doc": false, 1128 - "lib": false, 1129 - "sample": false, 1130 - "static": false 1131 - } 1132 - } 1133 - }, 1134 - "nsight_systems": { 1135 - "linux-ppc64le": { 1136 - "outputs": { 1137 - "bin": true, 1138 - "dev": false, 1139 - "doc": false, 1140 - "lib": false, 1141 - "sample": false, 1142 - "static": false 1143 - } 1144 - }, 1145 - "linux-sbsa": { 1146 - "outputs": { 1147 - "bin": true, 1148 - "dev": false, 1149 - "doc": false, 1150 - "lib": false, 1151 - "sample": false, 1152 - "static": false 1153 - } 1154 - }, 1155 - "linux-x86_64": { 1156 - "outputs": { 1157 - "bin": true, 1158 - "dev": false, 1159 - "doc": false, 1160 - "lib": false, 1161 - "sample": false, 1162 - "static": false 1163 - } 1164 - }, 1165 - "windows-x86_64": { 1166 - "outputs": { 1167 - "bin": false, 1168 - "dev": false, 1169 - "doc": false, 1170 - "lib": false, 1171 - "sample": false, 1172 - "static": false 1173 - } 1174 - } 1175 - }, 1176 - "nsight_vse": { 1177 - "windows-x86_64": { 1178 - "outputs": { 1179 - "bin": false, 1180 - "dev": false, 1181 - "doc": false, 1182 - "lib": false, 1183 - "sample": false, 1184 - "static": false 1185 - } 1186 - } 1187 - }, 1188 - "nvidia_driver": { 1189 - "linux-ppc64le": { 1190 - "outputs": { 1191 - "bin": true, 1192 - "dev": false, 1193 - "doc": false, 1194 - "lib": true, 1195 - "sample": false, 1196 - "static": false 1197 - } 1198 - }, 1199 - "linux-sbsa": { 1200 - "outputs": { 1201 - "bin": true, 1202 - "dev": false, 1203 - "doc": false, 1204 - "lib": true, 1205 - "sample": false, 1206 - "static": false 1207 - } 1208 - }, 1209 - "linux-x86_64": { 1210 - "outputs": { 1211 - "bin": true, 1212 - "dev": false, 1213 - "doc": false, 1214 - "lib": true, 1215 - "sample": false, 1216 - "static": false 1217 - } 1218 - } 1219 - }, 1220 - "nvidia_fs": { 1221 - "linux-x86_64": { 1222 - "outputs": { 1223 - "bin": false, 1224 - "dev": false, 1225 - "doc": false, 1226 - "lib": false, 1227 - "sample": false, 1228 - "static": false 1229 - } 1230 - } 1231 - }, 1232 - "visual_studio_integration": { 1233 - "windows-x86_64": { 1234 - "outputs": { 1235 - "bin": false, 1236 - "dev": false, 1237 - "doc": false, 1238 - "lib": false, 1239 - "sample": false, 1240 - "static": false 1241 - } 1242 - } 1243 - } 1244 - }
-862
pkgs/development/cuda-modules/cuda/manifests/redistrib_11.4.4.json
··· 1 - { 2 - "release_date": "2022-02-01", 3 - "cuda_cccl": { 4 - "name": "CXX Core Compute Libraries", 5 - "license": "CUDA Toolkit", 6 - "version": "11.4.122", 7 - "linux-x86_64": { 8 - "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.4.122-archive.tar.xz", 9 - "sha256": "150b163bde4975154d6238ae1272c74df81b303dccca1f7637bd91027b65afc5", 10 - "md5": "e0e41040716a4d6113410d7cb25c7906", 11 - "size": "951832" 12 - }, 13 - "linux-ppc64le": { 14 - "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.4.122-archive.tar.xz", 15 - "sha256": "0d1d729ac3f52bdd04f197a6cef295b3463c4975d70dbd97f4e1b08a4857f488", 16 - "md5": "f615eccb3b8d694f4c7aa864c93959d7", 17 - "size": "951780" 18 - }, 19 - "linux-sbsa": { 20 - "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.4.122-archive.tar.xz", 21 - "sha256": "98f495b99c68fae54fe728e72aa3b8e2e5b1d77c9fd4946370cec3b063a7fcf3", 22 - "md5": "28692dd487b5936dbfac70ac56b65561", 23 - "size": "951340" 24 - }, 25 - "windows-x86_64": { 26 - "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.4.122-archive.zip", 27 - "sha256": "d721c4bcc5bf8054eb944b7c3203ce5f593523f798559f3f4c1effdd8ed36f48", 28 - "md5": "fa6bbf1291ebdd8f63f4f5176be4ae9c", 29 - "size": "2422426" 30 - } 31 - }, 32 - "cuda_cudart": { 33 - "name": "CUDA Runtime (cudart)", 34 - "license": "CUDA Toolkit", 35 - "version": "11.4.148", 36 - "linux-x86_64": { 37 - "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.4.148-archive.tar.xz", 38 - "sha256": "36bd6f1ea8711f69405ebd0b26d1f791a6ef6eb01cc3f01ba4231eb8ec09c208", 39 - "md5": "b98036aa5e633eb19b7ef2e32e8811a7", 40 - "size": "828732" 41 - }, 42 - "linux-ppc64le": { 43 - "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.4.148-archive.tar.xz", 44 - "sha256": "fb70c6477dce2cfc3ee13d361b76453ad92671be36f98fab50e2510f657eb00e", 45 - "md5": "594855b91ad5e9aa674d3a93d741431e", 46 - "size": "777952" 47 - }, 48 - "linux-sbsa": { 49 - "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.4.148-archive.tar.xz", 50 - "sha256": "d013448f76c22614e458de94b5289807d2d0934b3a5deb073b621401a222c16f", 51 - "md5": "2bcac7ef368ebeb804e33c4c7920ff78", 52 - "size": "783344" 53 - }, 54 - "windows-x86_64": { 55 - "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.4.148-archive.zip", 56 - "sha256": "e889e38929a95845409ed7dcdb0e6189343af5d17442a3b8c9f2ba297f0d262e", 57 - "md5": "c2fcccb16eec0cf4ed5807fcba2bd745", 58 - "size": "2898471" 59 - } 60 - }, 61 - "cuda_cuobjdump": { 62 - "name": "cuobjdump", 63 - "license": "CUDA Toolkit", 64 - "version": "11.4.120", 65 - "linux-x86_64": { 66 - "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.4.120-archive.tar.xz", 67 - "sha256": "dd9d51ca6d1772545ba77640f74bd1162ea4ffe223e17c8faa6e0a11ec9b5e2a", 68 - "md5": "0a28c3ee87dbe294afc73b90ff0c8101", 69 - "size": "110008" 70 - }, 71 - "linux-ppc64le": { 72 - "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.4.120-archive.tar.xz", 73 - "sha256": "3f5013ecd3ad3ef1f90f981189826ae9e5aadb7549a99e834c0f6d77c897a7ff", 74 - "md5": "56cabd1ef862f62c10a6fc9e47186797", 75 - "size": "115060" 76 - }, 77 - "linux-sbsa": { 78 - "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.4.120-archive.tar.xz", 79 - "sha256": "7f5c5e38780d9d44084f05ae091be1ad8672f370a6da17cc3f0a9a55e998163a", 80 - "md5": "5df0f75608960c20f5c2b3b11cb9a2d3", 81 - "size": "99752" 82 - }, 83 - "windows-x86_64": { 84 - "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.4.120-archive.zip", 85 - "sha256": "e371440535fae634c625a5dd02d18cd4accd11b9166703f9d5a95f7b721f09b0", 86 - "md5": "2d8a519c9ebe674a624b3b4cbfe91be3", 87 - "size": "2535529" 88 - } 89 - }, 90 - "cuda_cupti": { 91 - "name": "CUPTI", 92 - "license": "CUDA Toolkit", 93 - "version": "11.4.120", 94 - "linux-x86_64": { 95 - "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.4.120-archive.tar.xz", 96 - "sha256": "e589bd0955dc59cf7871dad3446e583316623dd899b67c34b808fbe14cde0209", 97 - "md5": "e80232b5629d4c26376411f28ec41b05", 98 - "size": "15499004" 99 - }, 100 - "linux-ppc64le": { 101 - "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.4.120-archive.tar.xz", 102 - "sha256": "24687d171f15101109dc428bd2236889bda617377b2a29bdfc0173095bcf28a8", 103 - "md5": "8a0aef6d201a0bb79af677d3aba9c790", 104 - "size": "8092764" 105 - }, 106 - "linux-sbsa": { 107 - "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.4.120-archive.tar.xz", 108 - "sha256": "d66367c166d27ddd6d7ed07f7a492dfed77b6eae505a7037a29537ce3e15eeb3", 109 - "md5": "81b11a7aac656df569ba5ab909d114c7", 110 - "size": "7301688" 111 - }, 112 - "windows-x86_64": { 113 - "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.4.120-archive.zip", 114 - "sha256": "74545a99d9a35c53790003006b29b9af5ca52b48f8703fdbc003665b42f5ec39", 115 - "md5": "745b2b131e2f421e65c7792547792b12", 116 - "size": "10080557" 117 - } 118 - }, 119 - "cuda_cuxxfilt": { 120 - "name": "CUDA cuxxfilt (demangler)", 121 - "license": "CUDA Toolkit", 122 - "version": "11.4.120", 123 - "linux-x86_64": { 124 - "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.4.120-archive.tar.xz", 125 - "sha256": "8dc88e398f976d20540e7c7b4f004f158b12cd9edf59a9ab988abbacc3e1452c", 126 - "md5": "2bc240881b64f762b053a6284a2f3c04", 127 - "size": "176072" 128 - }, 129 - "linux-ppc64le": { 130 - "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.4.120-archive.tar.xz", 131 - "sha256": "943e23feafe86b9b83441a51ada152b110031f7891dfa531d2ef85657360f70e", 132 - "md5": "eed7b9a4008d6d18a2cc3d1630169fb9", 133 - "size": "172424" 134 - }, 135 - "linux-sbsa": { 136 - "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.4.120-archive.tar.xz", 137 - "sha256": "50808b530cab8d37bfb73683c36afb9da843c6ca18d0394c1ce636ab4594ec9e", 138 - "md5": "f5f79636b09d840234f7b54a10e6245a", 139 - "size": "162820" 140 - }, 141 - "windows-x86_64": { 142 - "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.4.120-archive.zip", 143 - "sha256": "471a6106789596ac7f5de8bc9326b4a0193ecc35f7e5831fb32827a8cecaa2d0", 144 - "md5": "76ff5d04e065ab466b607d16019f01bd", 145 - "size": "166494" 146 - } 147 - }, 148 - "cuda_demo_suite": { 149 - "name": "CUDA Demo Suite", 150 - "license": "CUDA Toolkit", 151 - "version": "11.4.100", 152 - "linux-x86_64": { 153 - "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.4.100-archive.tar.xz", 154 - "sha256": "8cd9ffeb7742f4714166731ce8cbf74e2d2c8171d6b7091e0041816d47a7fd0c", 155 - "md5": "9327079f165128a1b6346c32b61088e3", 156 - "size": "3965292" 157 - }, 158 - "windows-x86_64": { 159 - "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.4.100-archive.zip", 160 - "sha256": "0ac19c9efa634042e1d38d97b75a656d9c0038219bdc5098a28d388ca7c427f2", 161 - "md5": "8b97b7acba08bbbbbf122f2e0d81bc21", 162 - "size": "5014818" 163 - } 164 - }, 165 - "cuda_documentation": { 166 - "name": "CUDA Documentation", 167 - "license": "CUDA Toolkit", 168 - "version": "11.4.126", 169 - "linux-x86_64": { 170 - "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.4.126-archive.tar.xz", 171 - "sha256": "2db25b21a6687803d146d34df0005f7d784ebd9303fbbd48d21f4508aedeb3fd", 172 - "md5": "107cb0150f83da7ebec6e118e4522498", 173 - "size": "61960" 174 - }, 175 - "linux-ppc64le": { 176 - "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.4.126-archive.tar.xz", 177 - "sha256": "85719df5828ef91205353dab12085707e0f29c188aea41afe91b36f86ec9b338", 178 - "md5": "afb21df7f560fa012593ff31021490a7", 179 - "size": "61912" 180 - }, 181 - "linux-sbsa": { 182 - "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.4.126-archive.tar.xz", 183 - "sha256": "94c9bc3ab45b1e951570d4312fbb3627ac8cedb88d1da4a57fbfd1677a03f2c8", 184 - "md5": "d05e8ec60b4aa7e494a960a32d18c7fa", 185 - "size": "61944" 186 - }, 187 - "windows-x86_64": { 188 - "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.4.126-archive.zip", 189 - "sha256": "a02dc2be494f4429ee5d183c218d5b27744f3daf0d29b50516dd501491a42f5a", 190 - "md5": "4e14de4b3f89d9ef951e8ea35ff810fe", 191 - "size": "99427" 192 - } 193 - }, 194 - "cuda_gdb": { 195 - "name": "CUDA GDB", 196 - "license": "CUDA Toolkit", 197 - "version": "11.4.120", 198 - "linux-x86_64": { 199 - "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.4.120-archive.tar.xz", 200 - "sha256": "ce9748c224b2163dba84cc9e0ebbd7ea29217eb4674bd9e7892290c7eaae372b", 201 - "md5": "e0de9ddbf59cfa699f4a1eb16961463e", 202 - "size": "64086980" 203 - }, 204 - "linux-ppc64le": { 205 - "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.4.120-archive.tar.xz", 206 - "sha256": "5084eee5c04c6a823e6e0f8c30eb2587b5ab31a949d21818ce769cd22191896e", 207 - "md5": "562494875b8b8ccc345b146f3894288b", 208 - "size": "63994280" 209 - }, 210 - "linux-sbsa": { 211 - "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.4.120-archive.tar.xz", 212 - "sha256": "c9f18f6f7262b39df76830798aa4dda5fbf455b95bd4af2eb5ae25ce77e3848c", 213 - "md5": "cbf494bf0bc03c39106825333ff777b0", 214 - "size": "63856896" 215 - } 216 - }, 217 - "cuda_memcheck": { 218 - "name": "CUDA Memcheck", 219 - "license": "CUDA Toolkit", 220 - "version": "11.4.120", 221 - "linux-x86_64": { 222 - "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.4.120-archive.tar.xz", 223 - "sha256": "6e1d64a2b31fec96a5eeb1d6ea914cfe83c671c3de4f987b6b5cda65d6e3b9e7", 224 - "md5": "5b70e9b1eb50d0fff5b5d56ae76b358d", 225 - "size": "139580" 226 - }, 227 - "linux-ppc64le": { 228 - "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.4.120-archive.tar.xz", 229 - "sha256": "3a4d4c876bbb032c1e611b22a79e2cdce44cc6691ed519a63886a06094385ab4", 230 - "md5": "97aa39e782ac0d935fa25dbad41274bd", 231 - "size": "148128" 232 - }, 233 - "windows-x86_64": { 234 - "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.4.120-archive.zip", 235 - "sha256": "d3357d2a41143f8007c17af45b7e5733e0ec4c0c1185322739232c7603221b88", 236 - "md5": "82ad9ae4d123a3666177f326b88fbacb", 237 - "size": "181182" 238 - } 239 - }, 240 - "cuda_nsight": { 241 - "name": "Nsight Eclipse Edition Plugin", 242 - "license": "CUDA Toolkit", 243 - "version": "11.4.120", 244 - "linux-x86_64": { 245 - "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.4.120-archive.tar.xz", 246 - "sha256": "b2b54743ad4f8bbd812548a26be40f561f6fda0f0ab01df4e630ef30af7bfd7a", 247 - "md5": "5981def738578dfe6f6166abe943f178", 248 - "size": "118598236" 249 - }, 250 - "linux-ppc64le": { 251 - "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.4.120-archive.tar.xz", 252 - "sha256": "c8cfb7300dba923acfdd5e7b2d32f7a576b7d6d954fc71a3896aba0226b00f81", 253 - "md5": "8b78eed909b09f80d91548f28a622b43", 254 - "size": "118598240" 255 - } 256 - }, 257 - "cuda_nvcc": { 258 - "name": "CUDA NVCC", 259 - "license": "CUDA Toolkit", 260 - "version": "11.4.152", 261 - "linux-x86_64": { 262 - "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.4.152-archive.tar.xz", 263 - "sha256": "7250fc83b54f9089e67f3b506648fd8e70a9107baed968cb5de169c05831d5e5", 264 - "md5": "fae82c384d46626a2f2e69fd98f0034d", 265 - "size": "35931152" 266 - }, 267 - "linux-ppc64le": { 268 - "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.4.152-archive.tar.xz", 269 - "sha256": "a53c8d2e4454be0e899986a1585f8b1eddf874aac165716d6f98989e53f971d3", 270 - "md5": "1b74e7951c76119a03b805bde8d42fc9", 271 - "size": "33718168" 272 - }, 273 - "linux-sbsa": { 274 - "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.4.152-archive.tar.xz", 275 - "sha256": "c0743a099bfb8c840a20317559668777e9a8ac9664dc121bcd22d76cee08416d", 276 - "md5": "8982bd399b169d45717763cae36f4bc3", 277 - "size": "31676392" 278 - }, 279 - "windows-x86_64": { 280 - "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.4.152-archive.zip", 281 - "sha256": "460c9e54bd0b99f4f63243eeb6b2090d17193361575b189c050faa10d465d4a9", 282 - "md5": "c9cae278599871aea78aa4584c24bbb1", 283 - "size": "45724284" 284 - } 285 - }, 286 - "cuda_nvdisasm": { 287 - "name": "CUDA nvdisasm", 288 - "license": "CUDA Toolkit", 289 - "version": "11.4.152", 290 - "linux-x86_64": { 291 - "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.4.152-archive.tar.xz", 292 - "sha256": "6ab9bd7c31a54529762fddc9ebfc4d331a912bf97b47318b0b75bfbd3b8a5551", 293 - "md5": "e4d610b84f47026baa4c0603b007a778", 294 - "size": "32847928" 295 - }, 296 - "linux-ppc64le": { 297 - "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.4.152-archive.tar.xz", 298 - "sha256": "6cd970a59ba219c5da1ce39dbf08d7ba491ea17849adfed4ad83cc8409624348", 299 - "md5": "a0870567d10771c7b3319880743e5a21", 300 - "size": "32770452" 301 - }, 302 - "linux-sbsa": { 303 - "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.4.152-archive.tar.xz", 304 - "sha256": "68743913c877014b4f9a6d7267cc117d443c9990ea583ea837a1c51df1676d7d", 305 - "md5": "204674baa498d7ebef702b73733b001f", 306 - "size": "32729816" 307 - }, 308 - "windows-x86_64": { 309 - "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.4.152-archive.zip", 310 - "sha256": "9fa3a5a1248ad1247ee78a3d9627f1b2d7173cbde5bdb1635a853624f3f8137e", 311 - "md5": "68ac6d501a93683e6faaab5ec4e59e4c", 312 - "size": "33052575" 313 - } 314 - }, 315 - "cuda_nvml_dev": { 316 - "name": "CUDA NVML Headers", 317 - "license": "CUDA Toolkit", 318 - "version": "11.4.120", 319 - "linux-x86_64": { 320 - "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.4.120-archive.tar.xz", 321 - "sha256": "f722199f9cc101c97c6fc809745076645064d36558a5aab56bba5529716e0fe9", 322 - "md5": "1262ec1a15eeb4f2c7158192f580804f", 323 - "size": "71964" 324 - }, 325 - "linux-ppc64le": { 326 - "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.4.120-archive.tar.xz", 327 - "sha256": "08a763906637778d1c85455bdad4f2c0cb15d4cb0ae1c088dc474cb7ff78af81", 328 - "md5": "bae7ce5fda7a60e4f05219d8a0b8944c", 329 - "size": "71564" 330 - }, 331 - "linux-sbsa": { 332 - "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.4.120-archive.tar.xz", 333 - "sha256": "61c93230ea9fd9ae657c57954294380b5e8ee1688778f519ce5d43b728a04b9d", 334 - "md5": "91ba0d30c5ef440a1ffe115e5f5b6fb7", 335 - "size": "72120" 336 - }, 337 - "windows-x86_64": { 338 - "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.4.120-archive.zip", 339 - "sha256": "d97d1266345bcaf4212132bbc19270ee9c10bae37b29647ff5f40620f83fa3ce", 340 - "md5": "928f18b29e00a1a342119dddc1e0a0da", 341 - "size": "100022" 342 - } 343 - }, 344 - "cuda_nvprof": { 345 - "name": "CUDA nvprof", 346 - "license": "CUDA Toolkit", 347 - "version": "11.4.120", 348 - "linux-x86_64": { 349 - "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.4.120-archive.tar.xz", 350 - "sha256": "bcf705c8f25f3423014b4182741e91676c4858b1b055a314911e24787a2d3129", 351 - "md5": "cc266f0a2c9e05ac34105fc084b54b9e", 352 - "size": "1938384" 353 - }, 354 - "linux-ppc64le": { 355 - "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.4.120-archive.tar.xz", 356 - "sha256": "398dd3c6f04b712f7ed0e70ee3d56ee04e0b9fa249cc0a655b9263a24dca7d8c", 357 - "md5": "e1e6ef34ffefaf4e9bc5d34f34777427", 358 - "size": "1594396" 359 - }, 360 - "linux-sbsa": { 361 - "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.4.120-archive.tar.xz", 362 - "sha256": "e87eceb2da015262ca57f7200c8ca96251dd11161afcdeea9a080fce06e90730", 363 - "md5": "95260289dd9f07abd0013b0b82c2aa79", 364 - "size": "16124" 365 - }, 366 - "windows-x86_64": { 367 - "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.4.120-archive.zip", 368 - "sha256": "826b85be249e8a518f58b3fdaf36f52871e96e6fe0e86f7fc6facbc619405e81", 369 - "md5": "a25a3b9d2710e7e9f09492492fe09777", 370 - "size": "1610917" 371 - } 372 - }, 373 - "cuda_nvprune": { 374 - "name": "CUDA nvprune", 375 - "license": "CUDA Toolkit", 376 - "version": "11.4.120", 377 - "linux-x86_64": { 378 - "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.4.120-archive.tar.xz", 379 - "sha256": "3e0ae31117c82f5e0220662a9ee1df15d2aa79bf6a53bc627ee5898a3e9719ef", 380 - "md5": "8b64523c53e6587c17c6c621ddf8a632", 381 - "size": "52772" 382 - }, 383 - "linux-ppc64le": { 384 - "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.4.120-archive.tar.xz", 385 - "sha256": "a8f62ffd30747f5481c6abb11a924dd68b8da9b4a72a0821a411d545fd79ebbf", 386 - "md5": "eb0ba8fd0b6f8daeb6cc8d50f7344fff", 387 - "size": "54280" 388 - }, 389 - "linux-sbsa": { 390 - "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.4.120-archive.tar.xz", 391 - "sha256": "da4078a81d0af984bd42f23c584091968454a0e925c64289f2e5922e02c76131", 392 - "md5": "89c50bee0950223a4dc194726ed908fc", 393 - "size": "46000" 394 - }, 395 - "windows-x86_64": { 396 - "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.4.120-archive.zip", 397 - "sha256": "ec5e1975147a83da707a1803c1e9af93b02ff8af246d23b733bd5a1662c708a9", 398 - "md5": "8c22f5bb3b3bdbb0421b07b988e5ce3e", 399 - "size": "143427" 400 - } 401 - }, 402 - "cuda_nvrtc": { 403 - "name": "CUDA NVRTC", 404 - "license": "CUDA Toolkit", 405 - "version": "11.4.152", 406 - "linux-x86_64": { 407 - "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.4.152-archive.tar.xz", 408 - "sha256": "5b7e491b583d1914c591447b9cf1b4c02dc33b222874eb89eee4ea8f87929396", 409 - "md5": "60aa9f569c86f41519a5d0a222f09109", 410 - "size": "14691116" 411 - }, 412 - "linux-ppc64le": { 413 - "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.4.152-archive.tar.xz", 414 - "sha256": "917d9e0f050bd140e279b6e063af3ab92e443572e6baf840e2c1ed6cb5b8e765", 415 - "md5": "84ceac397b7172f94485065e42da41fd", 416 - "size": "13608340" 417 - }, 418 - "linux-sbsa": { 419 - "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.4.152-archive.tar.xz", 420 - "sha256": "d82eb049e72545239c6d64e6bf5afd06b89df06f338165fc5a68a2bf3143472e", 421 - "md5": "01b483fcf81c794266dce6d2b8b39a17", 422 - "size": "13550244" 423 - }, 424 - "windows-x86_64": { 425 - "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.4.152-archive.zip", 426 - "sha256": "48e3def76ff1842d00051fd035e6487be711ac4019e9dc43f5db3f9e14363f91", 427 - "md5": "4fa6b0fb01c359360ab9352dacace716", 428 - "size": "16299675" 429 - } 430 - }, 431 - "cuda_nvtx": { 432 - "name": "CUDA NVTX", 433 - "license": "CUDA Toolkit", 434 - "version": "11.4.120", 435 - "linux-x86_64": { 436 - "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.4.120-archive.tar.xz", 437 - "sha256": "e50bd973d6b33f3b9a405a96ad04f62482e94bbbadfdc971ea1bb5d723c98c52", 438 - "md5": "e62f8df47a1d8c47568c948b8d4789f8", 439 - "size": "48148" 440 - }, 441 - "linux-ppc64le": { 442 - "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.4.120-archive.tar.xz", 443 - "sha256": "fb89733ad6d46522a7e944c42df4127a6f87c38f0c4caa6b069669ef65a1c562", 444 - "md5": "ff407300bcb5f8acac30fbda02fe7da3", 445 - "size": "48152" 446 - }, 447 - "linux-sbsa": { 448 - "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.4.120-archive.tar.xz", 449 - "sha256": "95677940f19a12b82037958415efecc18c511c6480800c4df6d82bd5c3ba28b0", 450 - "md5": "1d0f72f8a04df9ad7face3af3169c44d", 451 - "size": "48676" 452 - }, 453 - "windows-x86_64": { 454 - "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.4.120-archive.zip", 455 - "sha256": "13bacfd087cc1d11759705bc9a04647201f5f1c49103ba2ac233981c305143ec", 456 - "md5": "26de9a2dcb6ba9a920fd58cbf9dd19f2", 457 - "size": "65720" 458 - } 459 - }, 460 - "cuda_nvvp": { 461 - "name": "CUDA NVVP", 462 - "license": "CUDA Toolkit", 463 - "version": "11.4.193", 464 - "linux-x86_64": { 465 - "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.4.193-archive.tar.xz", 466 - "sha256": "4c7dd6fe52fd90aabfb9c4afa7a65302546ac8212e62c1d9e1d370ec9756d7e5", 467 - "md5": "8d321f064b8c1bf4a9641694fae7c2bc", 468 - "size": "112249072" 469 - }, 470 - "linux-ppc64le": { 471 - "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.4.193-archive.tar.xz", 472 - "sha256": "4952683d2b158a2c507b3c1f968ad5fdb6d3421429832cb300c02733f775986e", 473 - "md5": "fa0e0023ff79698989070754e2f6ab7d", 474 - "size": "111627960" 475 - }, 476 - "windows-x86_64": { 477 - "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.4.193-archive.zip", 478 - "sha256": "0659bebb271a566e1a5e75659043632398d42b37413df879293da4c077472720", 479 - "md5": "c5b3cdcedec6655ca69bf7083e9150f1", 480 - "size": "120334859" 481 - } 482 - }, 483 - "cuda_sanitizer_api": { 484 - "name": "CUDA Compute Sanitizer API", 485 - "license": "CUDA Toolkit", 486 - "version": "11.4.120", 487 - "linux-x86_64": { 488 - "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.4.120-archive.tar.xz", 489 - "sha256": "75044d837ef848460037fc16abe4f2f265791c3888c6d1f7e63366a466b2aee7", 490 - "md5": "aa46c3b0ed1d16a75b489c75f067772e", 491 - "size": "7092964" 492 - }, 493 - "linux-ppc64le": { 494 - "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.4.120-archive.tar.xz", 495 - "sha256": "825d5f72fbcc4ed04bce016009fbe5881fb138b14d55df7190121fb34b7d2845", 496 - "md5": "0557a1dd8c0b9e8a854ed09357053143", 497 - "size": "5831356" 498 - }, 499 - "linux-sbsa": { 500 - "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.4.120-archive.tar.xz", 501 - "sha256": "a241a68429a1c33fdd0ba335d81c246079086552c56abb08033dd3dc85c576ad", 502 - "md5": "3a8de05d46d603136ac33ac6511dd454", 503 - "size": "5648592" 504 - }, 505 - "windows-x86_64": { 506 - "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.4.120-archive.zip", 507 - "sha256": "9fdb78035542c4eb9a8e881b8ced959eabfa04894ce2b847d54741120b5f1aaa", 508 - "md5": "ccd5b8f2656334b040a513c418408091", 509 - "size": "12062745" 510 - } 511 - }, 512 - "fabricmanager": { 513 - "name": "NVIDIA Fabric Manager", 514 - "license": "NVIDIA Driver", 515 - "version": "470.82.01", 516 - "linux-x86_64": { 517 - "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-470.82.01-archive.tar.xz", 518 - "sha256": "b039435622c14b2b1071aaabc0b63b04f21ec17564c1629a89e7cd25da8673fc", 519 - "md5": "4d3782e2354cfe0d70c84e79aaf5e5a2", 520 - "size": "1199624" 521 - } 522 - }, 523 - "libcublas": { 524 - "name": "CUDA cuBLAS", 525 - "license": "CUDA Toolkit", 526 - "version": "11.6.5.2", 527 - "linux-x86_64": { 528 - "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.6.5.2-archive.tar.xz", 529 - "sha256": "751c585c062f6e1dfcb1bca5898de48d4a247edad478de37eda0c7c62038379a", 530 - "md5": "9d36ade70e3d9c0059441fc59018d42e", 531 - "size": "397289908" 532 - }, 533 - "linux-ppc64le": { 534 - "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.6.5.2-archive.tar.xz", 535 - "sha256": "0bbb8a8db38a3a0b97bfc879046dc42dca3defb0f82b1424e23c49bdcc6f26d0", 536 - "md5": "9135c14acbcecd545578cc08642c6e53", 537 - "size": "396612488" 538 - }, 539 - "linux-sbsa": { 540 - "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.6.5.2-archive.tar.xz", 541 - "sha256": "7325d4fe77567ee69799902eae7479b8d6518c7722882d683a41b1ebdd8f676d", 542 - "md5": "75989e41f24bff9fbff1aaef7231b1aa", 543 - "size": "396559712" 544 - }, 545 - "windows-x86_64": { 546 - "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.6.5.2-archive.zip", 547 - "sha256": "7ebcfcd9cc327a020f156d9a9f7607ea6a563038834991324230102915bef47c", 548 - "md5": "1d69e9103b52557b6cb49cfdc5ae5709", 549 - "size": "290453672" 550 - } 551 - }, 552 - "libcufft": { 553 - "name": "CUDA cuFFT", 554 - "license": "CUDA Toolkit", 555 - "version": "10.5.2.100", 556 - "linux-x86_64": { 557 - "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.5.2.100-archive.tar.xz", 558 - "sha256": "0e3ec55be39db99c8769a3f297d190b93c8281afb5b3bc2ca1966ae94d42255f", 559 - "md5": "08023fd6700cb0f324421af5cdc4e1df", 560 - "size": "215214100" 561 - }, 562 - "linux-ppc64le": { 563 - "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.5.2.100-archive.tar.xz", 564 - "sha256": "b73d5a8a5a3a9497189b340001a0547d60b6971e42d60aa6d8ca0ae3ec1b0818", 565 - "md5": "712c0cfb1c74439bb581d36fc9c1bb24", 566 - "size": "214860644" 567 - }, 568 - "linux-sbsa": { 569 - "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.5.2.100-archive.tar.xz", 570 - "sha256": "49b7d658dc84fd6669a27907d403b4c93d82f9cc10670e9c990eed29ae6e5ee8", 571 - "md5": "c652700572c72b422727fb3a9db5dfa2", 572 - "size": "214998656" 573 - }, 574 - "windows-x86_64": { 575 - "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.5.2.100-archive.zip", 576 - "sha256": "eaf957a481d0c361724cf796b6bc105e36f9a3d17b7525107a78ff15ea3ddc6c", 577 - "md5": "37d169ea81f44c4caca0bb1dcc527549", 578 - "size": "287129611" 579 - } 580 - }, 581 - "libcufile": { 582 - "name": "CUDA cuFile", 583 - "license": "CUDA Toolkit", 584 - "version": "1.0.2.10", 585 - "linux-x86_64": { 586 - "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.0.2.10-archive.tar.xz", 587 - "sha256": "6f9d83ff112d81dbf36317c5140e063d4750debbebc17ffeab3ad934dbc845f1", 588 - "md5": "41929b0ff024c53033a705f29bc7e573", 589 - "size": "45641384" 590 - } 591 - }, 592 - "libcurand": { 593 - "name": "CUDA cuRAND", 594 - "license": "CUDA Toolkit", 595 - "version": "10.2.5.120", 596 - "linux-x86_64": { 597 - "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.5.120-archive.tar.xz", 598 - "sha256": "0f741c8c74bc19ea03a3a19a6d858d364d86d806fa5941763cafb181d4f9b2f0", 599 - "md5": "5a87e0cef68405a1e4777b76d0db7fed", 600 - "size": "79315612" 601 - }, 602 - "linux-ppc64le": { 603 - "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.5.120-archive.tar.xz", 604 - "sha256": "14589b5f7d7e4e283552a82ea9f7ffc6504e95c10dc33a5834a2aa75bcccb208", 605 - "md5": "012f3f367e15dd623de41dfa9cd5c695", 606 - "size": "79373580" 607 - }, 608 - "linux-sbsa": { 609 - "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.5.120-archive.tar.xz", 610 - "sha256": "834b508e8979c3f4751a0ddbc62e9c8bc113844e4f82326e73cc42da4adabad9", 611 - "md5": "c76e1c5544208c0372848965b0aec0a1", 612 - "size": "79304900" 613 - }, 614 - "windows-x86_64": { 615 - "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.5.120-archive.zip", 616 - "sha256": "35108db3e9afaac017e1d3460313632850e3627520cf2213b987fa3d4cf6a8ce", 617 - "md5": "dff8fe892d9551a11d366f57a3f32ad5", 618 - "size": "53518206" 619 - } 620 - }, 621 - "libcusolver": { 622 - "name": "CUDA cuSOLVER", 623 - "license": "CUDA Toolkit", 624 - "version": "11.2.0.120", 625 - "linux-x86_64": { 626 - "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.2.0.120-archive.tar.xz", 627 - "sha256": "5bae164a8a6969a374f6abe33cc71462e714538c2a818228cf401d0fa6c3c1b7", 628 - "md5": "198eb0679c8e81b9cb82107370bf1ee6", 629 - "size": "113793268" 630 - }, 631 - "linux-ppc64le": { 632 - "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.2.0.120-archive.tar.xz", 633 - "sha256": "0e2671cbe1cdb8cf4eb11698131c4ef4ce9ae58623595e623bbb3a492d7abe99", 634 - "md5": "9a10d6dddcd66a095d1f5dc47f7c4924", 635 - "size": "113397472" 636 - }, 637 - "linux-sbsa": { 638 - "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.2.0.120-archive.tar.xz", 639 - "sha256": "a53d4d80240702a8216903798ced8449f690379b785cc5fee21aeff5e0241dc4", 640 - "md5": "07d5e61eac9f304ff2eec374f7674711", 641 - "size": "112947208" 642 - }, 643 - "windows-x86_64": { 644 - "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.2.0.120-archive.zip", 645 - "sha256": "72e456cc8d7e79f514eae95ac9a4acb269e66344d67c5913370a3f0367a1f862", 646 - "md5": "c8097d4d1473b354b6570d9d9f788991", 647 - "size": "175875554" 648 - } 649 - }, 650 - "libcusparse": { 651 - "name": "CUDA cuSPARSE", 652 - "license": "CUDA Toolkit", 653 - "version": "11.6.0.120", 654 - "linux-x86_64": { 655 - "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.6.0.120-archive.tar.xz", 656 - "sha256": "00bef20a412c9b099e7e48477804ed4c2bda8581b101d19c50559efff79bf269", 657 - "md5": "0aaa13f7c89ce128a2321ad4ed0fc45f", 658 - "size": "205850728" 659 - }, 660 - "linux-ppc64le": { 661 - "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.6.0.120-archive.tar.xz", 662 - "sha256": "79721331edb5e17028273cf2280b2e3aedd11c4c8145c2fbd16afeb8c37f74b9", 663 - "md5": "12525f41737ba7066427a946f546b73b", 664 - "size": "205966724" 665 - }, 666 - "linux-sbsa": { 667 - "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.6.0.120-archive.tar.xz", 668 - "sha256": "93f7fbb8191e4af59aac32adb8ac06d6501bf90ca97e3e01f400314bc320c852", 669 - "md5": "37aa8d11916834daf765f385417a1d23", 670 - "size": "205713852" 671 - }, 672 - "windows-x86_64": { 673 - "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.6.0.120-archive.zip", 674 - "sha256": "bd995a141da804fa0d2c3bce1c6d575e862877e1356041dae326825e5194c176", 675 - "md5": "63fa77c71d4c5f93e5f97dd03bbb31bb", 676 - "size": "165699705" 677 - } 678 - }, 679 - "libnpp": { 680 - "name": "CUDA NPP", 681 - "license": "CUDA Toolkit", 682 - "version": "11.4.0.110", 683 - "linux-x86_64": { 684 - "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.4.0.110-archive.tar.xz", 685 - "sha256": "2e65c5b8d8aabf5521faf8daab170ddef27d795f61ded58343a9070dffd2ebff", 686 - "md5": "c8cce28919ab1b87952f657883ad2019", 687 - "size": "149105144" 688 - }, 689 - "linux-ppc64le": { 690 - "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.4.0.110-archive.tar.xz", 691 - "sha256": "7cb571fb26fa5ae3c85489a45eb088ade9f6bf01105d651d7eaee9857085b368", 692 - "md5": "794acd28cb9f8a741557bd3c2b6168fd", 693 - "size": "149486332" 694 - }, 695 - "linux-sbsa": { 696 - "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.4.0.110-archive.tar.xz", 697 - "sha256": "c722734c0b36702a549a3796e76461376ae471d7af7729c1d59565cb08c95ed5", 698 - "md5": "f97cc0df88a8000340d397f902d7d0a4", 699 - "size": "148458280" 700 - }, 701 - "windows-x86_64": { 702 - "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.4.0.110-archive.zip", 703 - "sha256": "6e1a90494f93db97687b8f2b216da0ab3ca4677640c856a35e7d3b12c46c4223", 704 - "md5": "57f29f491747786ef1392435502da28d", 705 - "size": "111941586" 706 - } 707 - }, 708 - "libnvjpeg": { 709 - "name": "CUDA nvJPEG", 710 - "license": "CUDA Toolkit", 711 - "version": "11.5.2.120", 712 - "linux-x86_64": { 713 - "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.5.2.120-archive.tar.xz", 714 - "sha256": "b664c4cec5bf0518c83c5568fb9bc36d202dff67fce4ee12657043f45b431347", 715 - "md5": "3f8670cb77f6d11219e485aa28ff3b34", 716 - "size": "1906200" 717 - }, 718 - "linux-ppc64le": { 719 - "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.5.2.120-archive.tar.xz", 720 - "sha256": "c0e5fe1dc9c45e71fde99071deac6a48a94515b79e59cb0fab4412060b6bac95", 721 - "md5": "8cce374dc46360952ef14e19902d240e", 722 - "size": "1925636" 723 - }, 724 - "linux-sbsa": { 725 - "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.5.2.120-archive.tar.xz", 726 - "sha256": "0e7f4360e75a6f880b2accbfd7dd0cc91e850014ee42ff1c5fcd5060fb14beec", 727 - "md5": "1c8275903175d8f63dfef2b50c752bb4", 728 - "size": "1764008" 729 - }, 730 - "windows-x86_64": { 731 - "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.5.2.120-archive.zip", 732 - "sha256": "45d894a95aa26e125f5d002d138c6d9a2f2568edf809fea86d7782657bdec5fc", 733 - "md5": "ad0b579ee7817a42c813f5424c53019e", 734 - "size": "1951350" 735 - } 736 - }, 737 - "nsight_compute": { 738 - "name": "Nsight Compute", 739 - "license": "NVIDIA SLA", 740 - "version": "2021.2.2.1", 741 - "linux-x86_64": { 742 - "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2021.2.2.1-archive.tar.xz", 743 - "sha256": "9baed2f77b341f6953a7de1f93c0a939c9a08884edbe0b30b0887e9d81960b39", 744 - "md5": "c3d6baccc29b24dc0f48a45454f61dad", 745 - "size": "284793108" 746 - }, 747 - "linux-ppc64le": { 748 - "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2021.2.2.1-archive.tar.xz", 749 - "sha256": "07980f3c1bcf1256bdcc86a8cd61fda1214af39f1a2b27d7e249a0f97c9f68c7", 750 - "md5": "f1ae025d30e3b6602ee922db46b2cea6", 751 - "size": "57790468" 752 - }, 753 - "linux-sbsa": { 754 - "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2021.2.2.1-archive.tar.xz", 755 - "sha256": "21458456d17779c8c686055cd202414bdeb2445daae480311c428fe69e1649fe", 756 - "md5": "6a3229e361f0d4dd1b6cd47a26a692cc", 757 - "size": "56717204" 758 - }, 759 - "windows-x86_64": { 760 - "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2021.2.2.1-archive.zip", 761 - "sha256": "dcc1f9b2cbdcfebcfcacd1acf522145e3335349139da6994d2b6e7610a43eecf", 762 - "md5": "21e5ef7a02a83748aed68fdf4765ff7a", 763 - "size": "253104502" 764 - } 765 - }, 766 - "nsight_nvtx": { 767 - "name": "Nsight NVTX", 768 - "license": "CUDA Toolkit", 769 - "version": "1.21018621", 770 - "windows-x86_64": { 771 - "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 772 - "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 773 - "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 774 - "size": "315692" 775 - } 776 - }, 777 - "nsight_systems": { 778 - "name": "Nsight Systems", 779 - "license": "NVIDIA SLA", 780 - "version": "2021.3.2.4", 781 - "linux-x86_64": { 782 - "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.3.2.4-archive.tar.xz", 783 - "sha256": "317dcd4a3d78c7d916924f6433cb93415f19e16e4688413e4692180e37f7f87a", 784 - "md5": "572fb66e9bd39406222eae7f3389794a", 785 - "size": "174858452" 786 - }, 787 - "linux-ppc64le": { 788 - "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.3.2.4-archive.tar.xz", 789 - "sha256": "45c874f923af9fc6247058ce3324322593a7367edc4b105280d017970d5def69", 790 - "md5": "4bacedaccacc5bb9cffe6b13f2502586", 791 - "size": "21385068" 792 - }, 793 - "linux-sbsa": { 794 - "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.3.2.4-archive.tar.xz", 795 - "sha256": "76ce8ed29e4f8d8d472f702b9e14543f4c4e7b8f27a90079d8c3e6580db6cb16", 796 - "md5": "f2b7b464fab05c73872b1ccfc8f433ea", 797 - "size": "33097032" 798 - }, 799 - "windows-x86_64": { 800 - "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.3.2.4-archive.zip", 801 - "sha256": "1002ea5ef56ae5f458101af04252190e8873f950389f6c8f78cd475bd71b6efe", 802 - "md5": "8e9e44e9e3ec526f1378d1e0d0423bff", 803 - "size": "226086324" 804 - } 805 - }, 806 - "nsight_vse": { 807 - "name": "Nsight Visual Studio Edition (VSE)", 808 - "license": "NVIDIA SLA", 809 - "version": "2021.2.1.21205", 810 - "windows-x86_64": { 811 - "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2021.2.1.21205-archive.zip", 812 - "sha256": "116fb34fc90cd13cf17649931be0af756930da98bbd5339b44b6cbd2d1e42453", 813 - "md5": "1ff5d4397b22ed55be7c7d2a5a594a2a", 814 - "size": "284584707" 815 - } 816 - }, 817 - "nvidia_driver": { 818 - "name": "NVIDIA Linux Driver", 819 - "license": "NVIDIA Driver", 820 - "version": "470.82.01", 821 - "linux-x86_64": { 822 - "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-470.82.01-archive.tar.xz", 823 - "sha256": "aa8edae8b40ee2c6808fd59220e81f46f2ccf8bd1ec184eb8dc83ddabba139db", 824 - "md5": "9fd218a52ee6620319a4c77176dd7145", 825 - "size": "269972368" 826 - }, 827 - "linux-ppc64le": { 828 - "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-470.82.01-archive.tar.xz", 829 - "sha256": "eb521f9d849d05500f793915f0f455fe95ed0f515078081ea9e7903a0ca08957", 830 - "md5": "c56d1492bcb7d65222f9dca907bf0c14", 831 - "size": "67098452" 832 - }, 833 - "linux-sbsa": { 834 - "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-470.82.01-archive.tar.xz", 835 - "sha256": "4d8fa4bef4037b249f4da083796a213d3e6701e683784e75122b326ab7130625", 836 - "md5": "2e3059458ca28211195801da983e424c", 837 - "size": "183043372" 838 - } 839 - }, 840 - "nvidia_fs": { 841 - "name": "NVIDIA filesystem", 842 - "license": "CUDA Toolkit", 843 - "version": "2.7.53", 844 - "linux-x86_64": { 845 - "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.7.53-archive.tar.xz", 846 - "sha256": "9fa17e62079fc1fadd1046b8a99dad39d1813cbc70c08bad8f30dc7946ba6894", 847 - "md5": "4b4cc07a2aaf8562b1f658522613600a", 848 - "size": "67712" 849 - } 850 - }, 851 - "visual_studio_integration": { 852 - "name": "CUDA Visual Studio Integration", 853 - "license": "CUDA Toolkit", 854 - "version": "11.4.120", 855 - "windows-x86_64": { 856 - "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.4.120-archive.zip", 857 - "sha256": "a97171f455c7c3e938958ee02deddf264c63dd9f10197d07954917c04b444ff2", 858 - "md5": "8f19de4992331ac5a877b3d3ccff25da", 859 - "size": "387698" 860 - } 861 - } 862 - }
-873
pkgs/development/cuda-modules/cuda/manifests/redistrib_11.5.2.json
··· 1 - { 2 - "release_date": "2022-02-02", 3 - "cuda_cccl": { 4 - "name": "CXX Core Compute Libraries", 5 - "license": "CUDA Toolkit", 6 - "version": "11.5.62", 7 - "linux-x86_64": { 8 - "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.5.62-archive.tar.xz", 9 - "sha256": "bbe633d6603d5a96a214dcb9f3f6f6fd2fa04d62e53694af97ae0c7afe0121b0", 10 - "md5": "e5deef4f6cb71f14aac5be5d5745dafe", 11 - "size": "960968" 12 - }, 13 - "linux-ppc64le": { 14 - "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.5.62-archive.tar.xz", 15 - "sha256": "f5301a213878c7afbc67da03b09b27e1cb92178483042538f1585df09407214a", 16 - "md5": "9c3200a20b10bebcdde87367128d36d9", 17 - "size": "960940" 18 - }, 19 - "linux-sbsa": { 20 - "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.5.62-archive.tar.xz", 21 - "sha256": "a4faf04025bdaf5b7871ad43f50cbe2ca10baf8665b17b78d32c50aa8ba7ae8b", 22 - "md5": "229a13fbe8426da383addf9ee9168984", 23 - "size": "960660" 24 - }, 25 - "windows-x86_64": { 26 - "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.5.62-archive.zip", 27 - "sha256": "2a44c359d523317d1c93ba6568ace3c088c83026e2e40d34a97fccd876466b4b", 28 - "md5": "93604e9c00b8fbc31827c7a82c0894c2", 29 - "size": "2459582" 30 - } 31 - }, 32 - "cuda_cudart": { 33 - "name": "CUDA Runtime (cudart)", 34 - "license": "CUDA Toolkit", 35 - "version": "11.5.117", 36 - "linux-x86_64": { 37 - "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.5.117-archive.tar.xz", 38 - "sha256": "c01bfcfca22063c99fd50122d39383433f4f789e021c7785cd555f59c2632a2c", 39 - "md5": "7549121367907b56af18e5806e8244bc", 40 - "size": "836276" 41 - }, 42 - "linux-ppc64le": { 43 - "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.5.117-archive.tar.xz", 44 - "sha256": "8f412376f4951df52380d87bb6c22704cb930ac6cef0fe92f2f31604ef744ce7", 45 - "md5": "dab60517ad1e6018c009305025158860", 46 - "size": "782660" 47 - }, 48 - "linux-sbsa": { 49 - "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.5.117-archive.tar.xz", 50 - "sha256": "550f8dfdce3fb6ca723d716abff81e1fd55132a130d284ae2050a0f09f40c93f", 51 - "md5": "c1c0c65dce9da1105d812d0b08d99108", 52 - "size": "783804" 53 - }, 54 - "windows-x86_64": { 55 - "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.5.117-archive.zip", 56 - "sha256": "02cd427306ada807c9a8a1f16dd34ddeb58f35c7932bcbe13e1ee2afa882332c", 57 - "md5": "b8c4d1288f5918d67777192abd627238", 58 - "size": "2915733" 59 - } 60 - }, 61 - "cuda_cuobjdump": { 62 - "name": "cuobjdump", 63 - "license": "CUDA Toolkit", 64 - "version": "11.5.119", 65 - "linux-x86_64": { 66 - "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.5.119-archive.tar.xz", 67 - "sha256": "798fa7124d56661d7a211900266f658d4303931936157e863c82cf31aeb27b09", 68 - "md5": "1d965f0f33b751d050ac8238a7a350a3", 69 - "size": "112864" 70 - }, 71 - "linux-ppc64le": { 72 - "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.5.119-archive.tar.xz", 73 - "sha256": "04845b4feb728840823b17aadc2fb579bd8be4e04f1cfe25bb78e8724794cdfa", 74 - "md5": "391d5e1b42899f34125793096f01bdbb", 75 - "size": "117636" 76 - }, 77 - "linux-sbsa": { 78 - "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.5.119-archive.tar.xz", 79 - "sha256": "1ae185d861f7075046e53e8ec69d4b650eef1bc09fdb0c89adf69e48f9b13d57", 80 - "md5": "19359104b424b6033b77c6b2984fc06f", 81 - "size": "101836" 82 - }, 83 - "windows-x86_64": { 84 - "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.5.119-archive.zip", 85 - "sha256": "2b059697dcc5b3df8ca527612893905cfb91f52fef4988388458060d038d86a9", 86 - "md5": "8f8ac819425d7e92a4bcb2e940eaeaad", 87 - "size": "2538559" 88 - } 89 - }, 90 - "cuda_cupti": { 91 - "name": "CUPTI", 92 - "license": "CUDA Toolkit", 93 - "version": "11.5.114", 94 - "linux-x86_64": { 95 - "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.5.114-archive.tar.xz", 96 - "sha256": "1ab09d29571a80f5c26187e78419b424a041ade7c9c108523aad26d6711eb222", 97 - "md5": "1adc2bcb044a372317103ad44e60f73b", 98 - "size": "15910648" 99 - }, 100 - "linux-ppc64le": { 101 - "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.5.114-archive.tar.xz", 102 - "sha256": "5739768e55551b131fd2bd0ef41806f70400e767cb520c511f11ea33ac940eb6", 103 - "md5": "320d9f4904723fb3ea3d95c7ea736998", 104 - "size": "8454516" 105 - }, 106 - "linux-sbsa": { 107 - "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.5.114-archive.tar.xz", 108 - "sha256": "05926807291609f643d4b92706a9ab627f4dd32e4f0c5779b58ba5c737453c43", 109 - "md5": "6cd4c658b0e30704bb3f21cb861c16ab", 110 - "size": "7827648" 111 - }, 112 - "windows-x86_64": { 113 - "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.5.114-archive.zip", 114 - "sha256": "56948dab7b3d39bc9d8231a277a051e57f95efe73f9f6bfeb9f66df2be3d2208", 115 - "md5": "fcb8bbf96ad9258fc0771dd59ddbab25", 116 - "size": "11262366" 117 - } 118 - }, 119 - "cuda_cuxxfilt": { 120 - "name": "CUDA cuxxfilt (demangler)", 121 - "license": "CUDA Toolkit", 122 - "version": "11.5.119", 123 - "linux-x86_64": { 124 - "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.5.119-archive.tar.xz", 125 - "sha256": "46e3adabbf6a3e7920f054b0e16b8555606798453d5abb004cc4f82df20cf093", 126 - "md5": "dc9e194c4c82ea3f3e2b5ac96b26355f", 127 - "size": "185608" 128 - }, 129 - "linux-ppc64le": { 130 - "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.5.119-archive.tar.xz", 131 - "sha256": "f7e3345c3545f72c3ef0020403463a72a21444b2e11f3d5a5e1c1a65e10c6f5b", 132 - "md5": "7316d577039df32a4bc556b5c7f13140", 133 - "size": "182008" 134 - }, 135 - "linux-sbsa": { 136 - "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.5.119-archive.tar.xz", 137 - "sha256": "7ef895dd76f2222d19344cadf32c84f8963c11a7773ceb73c7d9be4eb286576a", 138 - "md5": "85bd622ebac9a567f88302f53f893391", 139 - "size": "172336" 140 - }, 141 - "windows-x86_64": { 142 - "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.5.119-archive.zip", 143 - "sha256": "7820a76ffced4194ff09a910c70cfd5ab917e67be3a0371da4e25ed000346595", 144 - "md5": "dbf1c3108e731c13466180709335e702", 145 - "size": "168667" 146 - } 147 - }, 148 - "cuda_demo_suite": { 149 - "name": "CUDA Demo Suite", 150 - "license": "CUDA Toolkit", 151 - "version": "11.5.50", 152 - "linux-x86_64": { 153 - "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.5.50-archive.tar.xz", 154 - "sha256": "0dc6fd4d8ab3a0a5ff1d5cbd9a5a6a970f2d01097c31903afcf733d36b67f884", 155 - "md5": "da6c44696dada9f1adeb3234cfcdd9f1", 156 - "size": "3976764" 157 - }, 158 - "windows-x86_64": { 159 - "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.5.50-archive.zip", 160 - "sha256": "c81ecafd4e0c6ec137f582720f94e8ac2295e673063755c551c6866e2c3ba190", 161 - "md5": "39f63b4b72ba724454f679af3e351735", 162 - "size": "5015382" 163 - } 164 - }, 165 - "cuda_documentation": { 166 - "name": "CUDA Documentation", 167 - "license": "CUDA Toolkit", 168 - "version": "11.5.114", 169 - "linux-x86_64": { 170 - "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.5.114-archive.tar.xz", 171 - "sha256": "338466042a594f37996d7f50543096f0e1dc644f43319ff886e2496c339f4346", 172 - "md5": "c54ab14d9bdc53b03eb927cf50b1ae6e", 173 - "size": "62456" 174 - }, 175 - "linux-ppc64le": { 176 - "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.5.114-archive.tar.xz", 177 - "sha256": "69478f98bf8467843d5b6c3ae8163e082e89b9a6eb8061c900e1bbe76d570a03", 178 - "md5": "3c93062774f05facc809047af4721017", 179 - "size": "62516" 180 - }, 181 - "linux-sbsa": { 182 - "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.5.114-archive.tar.xz", 183 - "sha256": "ff6f44549650db44b0a6726b0ce1bc9b325d629190c6b17d35a2b99d36434678", 184 - "md5": "54afce3c11863b2e515719325a3a05f4", 185 - "size": "62452" 186 - }, 187 - "windows-x86_64": { 188 - "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.5.114-archive.zip", 189 - "sha256": "ec7ff829ce1717a88c54dbb15739e46f5d876e9ef32cc911fc66e2b78f3b286e", 190 - "md5": "d84ba6f46eda183231a01523eb8a0593", 191 - "size": "100197" 192 - } 193 - }, 194 - "cuda_gdb": { 195 - "name": "CUDA GDB", 196 - "license": "CUDA Toolkit", 197 - "version": "11.5.114", 198 - "linux-x86_64": { 199 - "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.5.114-archive.tar.xz", 200 - "sha256": "a590393cdbfb6620053075d9eebb18abcaedfd8ccdec2e4c8f4631080e7eaa31", 201 - "md5": "3e9ecd9834eb282d6ea55cf61765c01a", 202 - "size": "64086136" 203 - }, 204 - "linux-ppc64le": { 205 - "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.5.114-archive.tar.xz", 206 - "sha256": "564c2ff35bf3f76c60f57c9669d4a1b8312f6fedb0fa08c16178634a451fef72", 207 - "md5": "779ce7f3fd7b623c8cd12f822848c273", 208 - "size": "63889192" 209 - }, 210 - "linux-sbsa": { 211 - "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.5.114-archive.tar.xz", 212 - "sha256": "482d8ad678e00a562b087a0e6d988ca92a83a3aefccf8a9166390956739637a6", 213 - "md5": "bdc885a67bd000b44ea0f2ee46ab74f0", 214 - "size": "63816804" 215 - } 216 - }, 217 - "cuda_memcheck": { 218 - "name": "CUDA Memcheck", 219 - "license": "CUDA Toolkit", 220 - "version": "11.5.114", 221 - "linux-x86_64": { 222 - "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.5.114-archive.tar.xz", 223 - "sha256": "d13f915017ce2e4b6ed58b112fb831e07a638fa26cb73cd5501e330321048975", 224 - "md5": "584bcd833078f505b6f4c96b32cb8f45", 225 - "size": "139756" 226 - }, 227 - "linux-ppc64le": { 228 - "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.5.114-archive.tar.xz", 229 - "sha256": "43baae7eb977d265bd4763c10e5b5d2594a70dacabc00904468aa84c2ce13b82", 230 - "md5": "02a82840a71a889bcbdf655d41704b20", 231 - "size": "148096" 232 - }, 233 - "windows-x86_64": { 234 - "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.5.114-archive.zip", 235 - "sha256": "79193c8cf3a2d63cb182aea57aa54e705f49cc606cf13213439709b317fd9051", 236 - "md5": "06d2c5975482a2d266c40baae8e94448", 237 - "size": "172699" 238 - } 239 - }, 240 - "cuda_nsight": { 241 - "name": "Nsight Eclipse Edition Plugin", 242 - "license": "CUDA Toolkit", 243 - "version": "11.5.114", 244 - "linux-x86_64": { 245 - "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.5.114-archive.tar.xz", 246 - "sha256": "a4a512d806cce1ce73c87c0b996eddbfebc735d6b749915c870907f347de1840", 247 - "md5": "70bcbc9042f7757b34c1e7dbff56c719", 248 - "size": "118606516" 249 - }, 250 - "linux-ppc64le": { 251 - "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.5.114-archive.tar.xz", 252 - "sha256": "1ad8e934acd5563ce23f40359f3515fa1344ed6cfa6e8ea37e7c9ed51c52ddcf", 253 - "md5": "e58439f4b05a43a1e29cbe971228e1f8", 254 - "size": "118606504" 255 - } 256 - }, 257 - "cuda_nvcc": { 258 - "name": "CUDA NVCC", 259 - "license": "CUDA Toolkit", 260 - "version": "11.5.119", 261 - "linux-x86_64": { 262 - "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.5.119-archive.tar.xz", 263 - "sha256": "4072592764717f5c3ac53b95f0bb5f2bf427294b94aa9abda125e51b4fca9e0a", 264 - "md5": "272cd495f19864fab9e0b8c6a4d70a4d", 265 - "size": "36316988" 266 - }, 267 - "linux-ppc64le": { 268 - "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.5.119-archive.tar.xz", 269 - "sha256": "1dd811c9e8e6bb219a7e0ef63514665f8d7e6253ad93474b5b3594fce85cb191", 270 - "md5": "af5523c22de1667aece90f23dbe9a51a", 271 - "size": "34137608" 272 - }, 273 - "linux-sbsa": { 274 - "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.5.119-archive.tar.xz", 275 - "sha256": "21e9d7941a62806331e94eff3ba22b4bcace3f8227e133580f0367343eb3f3a4", 276 - "md5": "a7c7797e5d7a586d7e74cc3e70bda731", 277 - "size": "31876488" 278 - }, 279 - "windows-x86_64": { 280 - "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.5.119-archive.zip", 281 - "sha256": "477ca5d096c2e5a87480cae24951b54e641030cfc3c75ce869e0656e4fcb2142", 282 - "md5": "657fb06f0e06a16ee936aa22e7a3dd27", 283 - "size": "46379856" 284 - } 285 - }, 286 - "cuda_nvdisasm": { 287 - "name": "CUDA nvdisasm", 288 - "license": "CUDA Toolkit", 289 - "version": "11.5.119", 290 - "linux-x86_64": { 291 - "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.5.119-archive.tar.xz", 292 - "sha256": "7b5055db4fbc270a49d69dae6320331d16b3d50f828a9b155e7bf2abe138f273", 293 - "md5": "0405b49d574e4fd5783a1bfba9228966", 294 - "size": "32786096" 295 - }, 296 - "linux-ppc64le": { 297 - "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.5.119-archive.tar.xz", 298 - "sha256": "10e7d0794c8efd42fd345355e9ae8680b767b1b8d004c9e9baf2b4ad9b993b59", 299 - "md5": "11af2b0e169436278538d063370fc04f", 300 - "size": "32776804" 301 - }, 302 - "linux-sbsa": { 303 - "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.5.119-archive.tar.xz", 304 - "sha256": "698ccf414b9a7d823dc8d9818df72cac0a10d618ab143b221bbf321ada96ef08", 305 - "md5": "345f1c616a294ec7c70b1f881542a894", 306 - "size": "32729044" 307 - }, 308 - "windows-x86_64": { 309 - "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.5.119-archive.zip", 310 - "sha256": "f8dee0ae12696a02a01e95083e1fde8222018f641f7ebf712985fc6c1716f217", 311 - "md5": "f375afe649b16160af3ace6237d241cc", 312 - "size": "32996636" 313 - } 314 - }, 315 - "cuda_nvml_dev": { 316 - "name": "CUDA NVML Headers", 317 - "license": "CUDA Toolkit", 318 - "version": "11.5.50", 319 - "linux-x86_64": { 320 - "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.5.50-archive.tar.xz", 321 - "sha256": "e7a03b5c0324ccb5040cd494d2e3f1fba508cc437d666f112a6702d75bd80891", 322 - "md5": "53f9279a45cb1bb6c1993e7245a38a74", 323 - "size": "72176" 324 - }, 325 - "linux-ppc64le": { 326 - "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.5.50-archive.tar.xz", 327 - "sha256": "753ac81cde5a58b7bd4b59d56ab5e0ba973f96d6ffe95c447eb47f170d0c74be", 328 - "md5": "f08c23cf9598624799c19e628c6d91f8", 329 - "size": "71972" 330 - }, 331 - "linux-sbsa": { 332 - "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.5.50-archive.tar.xz", 333 - "sha256": "d3f913393ec4a1648fc5230c766606e1c8a7ca31f7595fd149f5cbeea63bd01a", 334 - "md5": "090c36b75393eef09d3b527521fa3791", 335 - "size": "72472" 336 - }, 337 - "windows-x86_64": { 338 - "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.5.50-archive.zip", 339 - "sha256": "ccd320d7b4aa8c7006085e003b9763a20a37e101e59dde8bcaf13f1e3b5ec04c", 340 - "md5": "b36dc6c87730612d3c538aacb10e89a8", 341 - "size": "100572" 342 - } 343 - }, 344 - "cuda_nvprof": { 345 - "name": "CUDA nvprof", 346 - "license": "CUDA Toolkit", 347 - "version": "11.5.114", 348 - "linux-x86_64": { 349 - "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.5.114-archive.tar.xz", 350 - "sha256": "611984e6ce96f216da0d5e3f72584b8e89512a712baf8faa5cc95f14be44ce51", 351 - "md5": "3146cddf336fc73e4348018058c57c70", 352 - "size": "1940688" 353 - }, 354 - "linux-ppc64le": { 355 - "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.5.114-archive.tar.xz", 356 - "sha256": "24c238e26fe49489d3aee0429e629eadc24122a93e5935758c97dab91f2a59b3", 357 - "md5": "685eed537cd8f9271d30a1d6a64d2643", 358 - "size": "1597248" 359 - }, 360 - "linux-sbsa": { 361 - "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.5.114-archive.tar.xz", 362 - "sha256": "b1c7b2498665c70e7d675170f1309f19ec86a55d284fcac6c7e2337c07a565af", 363 - "md5": "e26370530b986512b219f99fe707c57f", 364 - "size": "16196" 365 - }, 366 - "windows-x86_64": { 367 - "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.5.114-archive.zip", 368 - "sha256": "6274433235b2b61aac7333b9a7472893c6b7ca53e34a9a96ca197e46e925d394", 369 - "md5": "5d47af0e512563b484d3270a9225fad0", 370 - "size": "1599403" 371 - } 372 - }, 373 - "cuda_nvprune": { 374 - "name": "CUDA nvprune", 375 - "license": "CUDA Toolkit", 376 - "version": "11.5.119", 377 - "linux-x86_64": { 378 - "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.5.119-archive.tar.xz", 379 - "sha256": "f66c2632dbbdc6153aed2ae8bbf3291de258f7be5fd53350d469cf6f894aaa5c", 380 - "md5": "737a4e6b4ba979934f22cd9ff932f47d", 381 - "size": "55228" 382 - }, 383 - "linux-ppc64le": { 384 - "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.5.119-archive.tar.xz", 385 - "sha256": "209ddd276e857cb41e162f3748778dceb224bbab445469480f6578d1b8a199ad", 386 - "md5": "47f52a330781b2c5e6094ed309043faf", 387 - "size": "55760" 388 - }, 389 - "linux-sbsa": { 390 - "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.5.119-archive.tar.xz", 391 - "sha256": "57429ab14f4a99fcc2f7160a9d93f39358a4cf0f8e0d0996973883b1f5c1d520", 392 - "md5": "8b3d84b2e114e53b00e6fc6dd514750d", 393 - "size": "47580" 394 - }, 395 - "windows-x86_64": { 396 - "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.5.119-archive.zip", 397 - "sha256": "89a883eee3d6931e9b071c19a9ef07368429b8008fcb0f392229baa3d21b6cc2", 398 - "md5": "3e23701483da9ac6910a52dbcdb48ff0", 399 - "size": "144817" 400 - } 401 - }, 402 - "cuda_nvrtc": { 403 - "name": "CUDA NVRTC", 404 - "license": "CUDA Toolkit", 405 - "version": "11.5.119", 406 - "linux-x86_64": { 407 - "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.5.119-archive.tar.xz", 408 - "sha256": "78aa426f8d1bd6a309582268045e92d798dea84ab17b0e41bbf81ed4c6c51c37", 409 - "md5": "a14c3f9a30ca27f0a975b6995b440927", 410 - "size": "27772396" 411 - }, 412 - "linux-ppc64le": { 413 - "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.5.119-archive.tar.xz", 414 - "sha256": "bd10849b493902487660d3216a9b1de2c687d0d013085a7194925ff0a8d0461a", 415 - "md5": "b3e11ca277f1c92e8adf8056ee759fc2", 416 - "size": "25932956" 417 - }, 418 - "linux-sbsa": { 419 - "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.5.119-archive.tar.xz", 420 - "sha256": "c924444459eca0ee5f5748cc80628c0e8759d6cf70c55b5ce2e1b4b37a46d3cd", 421 - "md5": "31900a4918e162377e634dbc9d01ccba", 422 - "size": "25787560" 423 - }, 424 - "windows-x86_64": { 425 - "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.5.119-archive.zip", 426 - "sha256": "e6c7312b4b8f678828dca2b2e29bd8a1afee83709885bffe0115743219e092ae", 427 - "md5": "39a1fb1c6514e7a13d8822fef1fb6e95", 428 - "size": "92408767" 429 - } 430 - }, 431 - "cuda_nvtx": { 432 - "name": "CUDA NVTX", 433 - "license": "CUDA Toolkit", 434 - "version": "11.5.114", 435 - "linux-x86_64": { 436 - "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.5.114-archive.tar.xz", 437 - "sha256": "201b000020db8e296f526dbc1bedf6f0d2eb901e6add9d95a8badfaf8708bc7c", 438 - "md5": "fa5a8ec26505381bff0d513c3219b4b6", 439 - "size": "48196" 440 - }, 441 - "linux-ppc64le": { 442 - "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.5.114-archive.tar.xz", 443 - "sha256": "b188a8b413c2f8502c4ac6bd22a8c4d60279f704682a0582e71cb045817c08bc", 444 - "md5": "f51ac28484f7001ee7c10f37d5e98e38", 445 - "size": "48180" 446 - }, 447 - "linux-sbsa": { 448 - "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.5.114-archive.tar.xz", 449 - "sha256": "9caf957366bc723e53de7189112bd04d99300932061a2c3590e26215d0a39a04", 450 - "md5": "36e5d0c4a142260d1c5364733ce296cd", 451 - "size": "48740" 452 - }, 453 - "windows-x86_64": { 454 - "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.5.114-archive.zip", 455 - "sha256": "4d60f65ef83bcf36d549095350097c4198f78a968452b1fff0f1dabbe96a633b", 456 - "md5": "da8c51d38126ec2541c0f87dfd40aefe", 457 - "size": "65783" 458 - } 459 - }, 460 - "cuda_nvvp": { 461 - "name": "CUDA NVVP", 462 - "license": "CUDA Toolkit", 463 - "version": "11.5.126", 464 - "linux-x86_64": { 465 - "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.5.126-archive.tar.xz", 466 - "sha256": "453884ffe6732c0e1d19a17944dbdbb948a24ed2980acc67620bc0c160c4e023", 467 - "md5": "9d89a2f1c793736e329a8b0b5176616a", 468 - "size": "117592064" 469 - }, 470 - "linux-ppc64le": { 471 - "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.5.126-archive.tar.xz", 472 - "sha256": "ebb5b6849b4c014b9eeebcaf0f8e333ee8ab4a65cac8ed401a6a31604d7435d6", 473 - "md5": "6d621d6e56884143ac48910950dbc5f5", 474 - "size": "116958804" 475 - }, 476 - "windows-x86_64": { 477 - "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.5.126-archive.zip", 478 - "sha256": "3e88475b6ce923c736e49f659717ee0cbb0551c5e30f9cb8256ebf740d02f457", 479 - "md5": "4f8b8c7a3cafbdac8dfe3f9507c92d10", 480 - "size": "120342187" 481 - } 482 - }, 483 - "cuda_sanitizer_api": { 484 - "name": "CUDA Compute Sanitizer API", 485 - "license": "CUDA Toolkit", 486 - "version": "11.5.114", 487 - "linux-x86_64": { 488 - "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.5.114-archive.tar.xz", 489 - "sha256": "35d13fdeae94b2294c4d83661a663b5bae98e3f9b4aae00be101140a32409047", 490 - "md5": "52719791f4361ee001bd6327d79dcb2b", 491 - "size": "6818460" 492 - }, 493 - "linux-ppc64le": { 494 - "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.5.114-archive.tar.xz", 495 - "sha256": "b5353633dcc09e6360e9da14636774eee8cd9db90dd3ca93b77b1a95b104740c", 496 - "md5": "3f79dbebc1b88b552da041ccb7921ac3", 497 - "size": "7324744" 498 - }, 499 - "linux-sbsa": { 500 - "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.5.114-archive.tar.xz", 501 - "sha256": "3ce2d4421f9d8547bedb25c0ae8054ab0bb755384a33eea79dd036a8d4658a7f", 502 - "md5": "7585db5187b4fcbb713ff89eaf877389", 503 - "size": "5391196" 504 - }, 505 - "windows-x86_64": { 506 - "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.5.114-archive.zip", 507 - "sha256": "b216d0292002b4cc673a374f06576bc062e6566062a32edcdca60716e98f6587", 508 - "md5": "eccae888d8ee4264f8b5517f9af7fbc3", 509 - "size": "12199859" 510 - } 511 - }, 512 - "fabricmanager": { 513 - "name": "NVIDIA Fabric Manager", 514 - "license": "NVIDIA Driver", 515 - "version": "495.29.05", 516 - "linux-x86_64": { 517 - "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-495.29.05-archive.tar.xz", 518 - "sha256": "36966ebf7951dbd77fefb95b326b9084948ac8d03fbb6e8997e90c0fe8f74c9d", 519 - "md5": "4c4f119d897a77448f989534aa453a79", 520 - "size": "1521552" 521 - } 522 - }, 523 - "libcublas": { 524 - "name": "CUDA cuBLAS", 525 - "license": "CUDA Toolkit", 526 - "version": "11.7.4.6", 527 - "linux-x86_64": { 528 - "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.7.4.6-archive.tar.xz", 529 - "sha256": "1ba27f135e2f920bb47e22c05e4ef2e0a75e21d9306f5062e44c3d705150a3a9", 530 - "md5": "878826ff2c817a35a335f5e6ff4c5153", 531 - "size": "427700280" 532 - }, 533 - "linux-ppc64le": { 534 - "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.7.4.6-archive.tar.xz", 535 - "sha256": "061cdbeb437510437b4dfcd053834932e60943be996aea0187f6ba36b7cf614f", 536 - "md5": "fb760e547e07904d0e52578b01326219", 537 - "size": "427200296" 538 - }, 539 - "linux-sbsa": { 540 - "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.7.4.6-archive.tar.xz", 541 - "sha256": "38d7045310487b6f3dad4c6f8c5f6420b4dcf9dbf0171f3ef5f48f3e2f0024f9", 542 - "md5": "0c5411a296b474cd02a57de4b8cf4d0d", 543 - "size": "427180072" 544 - }, 545 - "windows-x86_64": { 546 - "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.7.4.6-archive.zip", 547 - "sha256": "a5b2c090e7b3da7b9823aa71ecf76a07344846daf8d26b13a06dba2d8a572c79", 548 - "md5": "071e96d21a31393cfef5dd263d2eb90b", 549 - "size": "317995451" 550 - } 551 - }, 552 - "libcufft": { 553 - "name": "CUDA cuFFT", 554 - "license": "CUDA Toolkit", 555 - "version": "10.6.0.107", 556 - "linux-x86_64": { 557 - "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.6.0.107-archive.tar.xz", 558 - "sha256": "e2e51dc75c9c5b4476624bf683d50afbcc611f88361392625f017bd3efc545b9", 559 - "md5": "abcd6e63926592b1d8de9a90e9953b44", 560 - "size": "213873928" 561 - }, 562 - "linux-ppc64le": { 563 - "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.6.0.107-archive.tar.xz", 564 - "sha256": "5e0e004e33a148bf543fd69df8ad7fcd14ae72c60676679908a6cf164a065651", 565 - "md5": "34042143bf1179bde112cee7237d149a", 566 - "size": "214892660" 567 - }, 568 - "linux-sbsa": { 569 - "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.6.0.107-archive.tar.xz", 570 - "sha256": "e5ea473699697bcfd2a0ab7b807dbc5dd713bfe40221f7356097fb6e2577d73a", 571 - "md5": "e800a93f81fdb7e95d31a14b7a215138", 572 - "size": "213119620" 573 - }, 574 - "windows-x86_64": { 575 - "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.6.0.107-archive.zip", 576 - "sha256": "f6b846a79772640585cbfc35746ededa1210e1ba7005e075d678a4d84ffd93ec", 577 - "md5": "7ec0315c986911ad1ea1cfd1705bc57a", 578 - "size": "287130074" 579 - } 580 - }, 581 - "libcufile": { 582 - "name": "CUDA cuFile", 583 - "license": "CUDA Toolkit", 584 - "version": "1.1.1.25", 585 - "linux-x86_64": { 586 - "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.1.1.25-archive.tar.xz", 587 - "sha256": "b4f4321f4fd249a2f4d68b3cf396a9e5891e33d73a297e21eea0ed9417340808", 588 - "md5": "dae59d20c2f51dc90fb18d017a17664e", 589 - "size": "45837600" 590 - } 591 - }, 592 - "libcurand": { 593 - "name": "CUDA cuRAND", 594 - "license": "CUDA Toolkit", 595 - "version": "10.2.7.107", 596 - "linux-x86_64": { 597 - "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.7.107-archive.tar.xz", 598 - "sha256": "9dd3bfa212a4c8e58a6869c4992e710409d34c46d5a683cf99670d5ef5b1f8de", 599 - "md5": "58f7993190fce602ea7e68aab7912774", 600 - "size": "82066560" 601 - }, 602 - "linux-ppc64le": { 603 - "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.7.107-archive.tar.xz", 604 - "sha256": "67d0759b1252d9df7953932ed58d01c05a4861121c19bafbb544b585113552ab", 605 - "md5": "368e13f6b9eb6e72fbc852d6dcfc4b6f", 606 - "size": "82116948" 607 - }, 608 - "linux-sbsa": { 609 - "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.7.107-archive.tar.xz", 610 - "sha256": "e8f2cc5e786812cf70bd7bd37a9c78e3341e602c402177d44e7bf07fe7e85142", 611 - "md5": "97065efb1e5fb99589540a45711eb2f3", 612 - "size": "82051480" 613 - }, 614 - "windows-x86_64": { 615 - "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.7.107-archive.zip", 616 - "sha256": "fa74020026d1cf81b0a3004c823ae40a4f0a02df34041438b992e6058ff97cd2", 617 - "md5": "df2a95194669cc02d987ee6527c5c6e3", 618 - "size": "53627481" 619 - } 620 - }, 621 - "libcusolver": { 622 - "name": "CUDA cuSOLVER", 623 - "license": "CUDA Toolkit", 624 - "version": "11.3.2.107", 625 - "linux-x86_64": { 626 - "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.3.2.107-archive.tar.xz", 627 - "sha256": "4c9e3fec211fa6cc6dd14a7d09237c56f43789e498817cd0839b0e6ef9c498fa", 628 - "md5": "19b927da5bb8c6fc28b2667e57eda7eb", 629 - "size": "69221812" 630 - }, 631 - "linux-ppc64le": { 632 - "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.3.2.107-archive.tar.xz", 633 - "sha256": "1f216cdda56463d333ffe4d52cf18283b3a8d917737698f5c8ed5851120f119a", 634 - "md5": "6b3ac8f0889f968c34e6fe903340ff5c", 635 - "size": "69348116" 636 - }, 637 - "linux-sbsa": { 638 - "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.3.2.107-archive.tar.xz", 639 - "sha256": "6feba029d8838d17345c38d77b6cd0e7853934106edcc5d5f6ec57646b499d28", 640 - "md5": "55492c175f1a152df54365544e2b582d", 641 - "size": "68661512" 642 - }, 643 - "windows-x86_64": { 644 - "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.3.2.107-archive.zip", 645 - "sha256": "325684ebefb24f7a47c5868a87f8dc38c88812c12f113bd57029b3a715c95405", 646 - "md5": "8936a0967f4178e7170f9e55fa4e6cd3", 647 - "size": "98405802" 648 - } 649 - }, 650 - "libcusparse": { 651 - "name": "CUDA cuSPARSE", 652 - "license": "CUDA Toolkit", 653 - "version": "11.7.0.107", 654 - "linux-x86_64": { 655 - "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.0.107-archive.tar.xz", 656 - "sha256": "9e768d6278df1b2323e2708bbf53af0bdb2955c0c4688eb69d5e418aea3a9b41", 657 - "md5": "c7653a07b2388d887c4e6b3ac1afafb4", 658 - "size": "181259248" 659 - }, 660 - "linux-ppc64le": { 661 - "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.0.107-archive.tar.xz", 662 - "sha256": "f01d662635d7b2001ace6122058159c9583c61db3fc5849a8ae025b9963657ec", 663 - "md5": "91b9e100ce9bae17ea08d97152184e44", 664 - "size": "181408304" 665 - }, 666 - "linux-sbsa": { 667 - "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.0.107-archive.tar.xz", 668 - "sha256": "88de7ce848b929439ba1fa1baf487ec56fedc39f8042a862c2f5522fbc1e82a2", 669 - "md5": "aec6e62aeff853dff5a150e2d0ca8aa1", 670 - "size": "181074920" 671 - }, 672 - "windows-x86_64": { 673 - "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.0.107-archive.zip", 674 - "sha256": "365a0316da888e0b8cc17b3e958b24b9faefa35e6b5fded7d9083483c1f0c097", 675 - "md5": "3c870ec7f8fc23130c66f989afd16a8e", 676 - "size": "149810382" 677 - } 678 - }, 679 - "libnpp": { 680 - "name": "CUDA NPP", 681 - "license": "CUDA Toolkit", 682 - "version": "11.5.1.107", 683 - "linux-x86_64": { 684 - "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.5.1.107-archive.tar.xz", 685 - "sha256": "5c6bcb73d6e2426e7369e5157387e02f70db3e94b2351c447ce559cba57e36f4", 686 - "md5": "762faaa53a62272ba508188779fc43f6", 687 - "size": "156693812" 688 - }, 689 - "linux-ppc64le": { 690 - "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.5.1.107-archive.tar.xz", 691 - "sha256": "cf2cbc740d9c111d9d266737f62ba4b44cfc84590fe1f9f4bf848b0908296971", 692 - "md5": "e284bab2afa99d9654c1b97ae407434f", 693 - "size": "156937760" 694 - }, 695 - "linux-sbsa": { 696 - "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.5.1.107-archive.tar.xz", 697 - "sha256": "cd86f76d41010e7fd37804ba102ec6896de4e51a2724cf44b9e7b22c1aa86429", 698 - "md5": "037ada0cfe8cb4885ceb07eb3423f789", 699 - "size": "156056260" 700 - }, 701 - "windows-x86_64": { 702 - "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.5.1.107-archive.zip", 703 - "sha256": "3ef847675b5cecdd70ede5216b91530bff152478441dc4b1e0d73bfcdb586a06", 704 - "md5": "d04eed9ff4432bc48f0afae802841793", 705 - "size": "121933476" 706 - } 707 - }, 708 - "libnvidia_nscq": { 709 - "name": "NVIDIA NSCQ API", 710 - "license": "NVIDIA Driver", 711 - "version": "495.29.05", 712 - "linux-x86_64": { 713 - "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-495.29.05-archive.tar.xz", 714 - "sha256": "19e036898474c89697c4adf4958daa241c07b6d9c9f6623190dd7a3b667a4c6b", 715 - "md5": "733c3a1ef5c33e4b4ccfaad11b514a98", 716 - "size": "316860" 717 - } 718 - }, 719 - "libnvjpeg": { 720 - "name": "CUDA nvJPEG", 721 - "license": "CUDA Toolkit", 722 - "version": "11.5.4.107", 723 - "linux-x86_64": { 724 - "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.5.4.107-archive.tar.xz", 725 - "sha256": "3943941f449e8a9aea465e26a25f3d0315e45a57c5ab993f1d15dac7453dcffc", 726 - "md5": "6459aa39efda628e4de36caafc938158", 727 - "size": "1902936" 728 - }, 729 - "linux-ppc64le": { 730 - "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.5.4.107-archive.tar.xz", 731 - "sha256": "760295c056951752ba7f4a5a56f4e5afe1538eafbc8ea01c21abe9b8bbd3f09e", 732 - "md5": "ee70cf1d8888bd696b34eb9981c865af", 733 - "size": "1924452" 734 - }, 735 - "linux-sbsa": { 736 - "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.5.4.107-archive.tar.xz", 737 - "sha256": "4dbc3c0da37ce108faadcaebbe72335984a60ed055b29fa56edfd89aad9d89cc", 738 - "md5": "54f25526b1d95a5e2a02ddc33eaf1ada", 739 - "size": "1735520" 740 - }, 741 - "windows-x86_64": { 742 - "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.5.4.107-archive.zip", 743 - "sha256": "50bb7bdd84a8ec74d4b2e2a133d8dd0474aa4224c3e7643ed75a7864cf705df6", 744 - "md5": "ef86aa6770eba3dc31a33698b600507b", 745 - "size": "1941889" 746 - } 747 - }, 748 - "nsight_compute": { 749 - "name": "Nsight Compute", 750 - "license": "NVIDIA SLA", 751 - "version": "2021.3.1.4", 752 - "linux-x86_64": { 753 - "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2021.3.1.4-archive.tar.xz", 754 - "sha256": "75cd4ca50472c8e4d6729e2f319a2e2f225c21450e868169608eaf1651de7cfd", 755 - "md5": "d4de103a4cce16501323ab22da3a5d3f", 756 - "size": "409065700" 757 - }, 758 - "linux-ppc64le": { 759 - "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2021.3.1.4-archive.tar.xz", 760 - "sha256": "326be8ea63091f14e7de7cf11d5c8e465200770518dccafc45ade7583e42e049", 761 - "md5": "0a34928121b5518075a3a50919f94999", 762 - "size": "123353872" 763 - }, 764 - "linux-sbsa": { 765 - "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2021.3.1.4-archive.tar.xz", 766 - "sha256": "f846e7f443df58dd03ad7da27483dc159715bdf1e260200499bc1ba4f9e2ab17", 767 - "md5": "6a22972b8771101d334cdd0f65785727", 768 - "size": "120013812" 769 - }, 770 - "windows-x86_64": { 771 - "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2021.3.1.4-archive.zip", 772 - "sha256": "6bb1bb69aa8976e8d60a23e25784967628a19622b779b4c5f44a1a5b10b6b312", 773 - "md5": "b3f1e03bf4b2b054287ae3ac9b693052", 774 - "size": "347770366" 775 - } 776 - }, 777 - "nsight_nvtx": { 778 - "name": "Nsight NVTX", 779 - "license": "CUDA Toolkit", 780 - "version": "1.21018621", 781 - "windows-x86_64": { 782 - "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 783 - "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 784 - "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 785 - "size": "315692" 786 - } 787 - }, 788 - "nsight_systems": { 789 - "name": "Nsight Systems", 790 - "license": "NVIDIA SLA", 791 - "version": "2021.3.3.2", 792 - "linux-x86_64": { 793 - "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.3.3.2-archive.tar.xz", 794 - "sha256": "89833f6e45c16c46612ec8ef2b7eab4a949ed86f0a75ebd673548d2ec15bf5bb", 795 - "md5": "4e42508a7365bffca7c574afc1095fb2", 796 - "size": "177789420" 797 - }, 798 - "linux-ppc64le": { 799 - "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.3.3.2-archive.tar.xz", 800 - "sha256": "39e59ff32decff6032df0d735dfe6004e5d543d52d212cd2743e5941900c1a52", 801 - "md5": "56f46452fef6ddceb91121c6a3da78af", 802 - "size": "22565096" 803 - }, 804 - "linux-sbsa": { 805 - "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.3.3.2-archive.tar.xz", 806 - "sha256": "292bf43aac5c870be38c28aa536c01b6692ede682b9790622fc7a8862b143b0d", 807 - "md5": "33aead87216f96a372db125f67e6f675", 808 - "size": "34536232" 809 - }, 810 - "windows-x86_64": { 811 - "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.3.3.2-archive.zip", 812 - "sha256": "c9c67a83bbfc0bbdcd30391cf3fa285f813f3b8d6dc088c4225a5ca7ccac38a2", 813 - "md5": "ab69a73835e658ac2871160daa01fa50", 814 - "size": "229359100" 815 - } 816 - }, 817 - "nsight_vse": { 818 - "name": "Nsight Visual Studio Edition (VSE)", 819 - "license": "NVIDIA SLA", 820 - "version": "2021.3.1.21308", 821 - "windows-x86_64": { 822 - "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2021.3.1.21308-archive.zip", 823 - "sha256": "ba659a0071bac9a2218c3b5f504c8fbe961f828df27361ed897c0dd41b53f71a", 824 - "md5": "720962c80b8aa09fb496014eb7f25e41", 825 - "size": "284695569" 826 - } 827 - }, 828 - "nvidia_driver": { 829 - "name": "NVIDIA Linux Driver", 830 - "license": "NVIDIA Driver", 831 - "version": "495.29.05", 832 - "linux-x86_64": { 833 - "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-495.29.05-archive.tar.xz", 834 - "sha256": "6a0675a60fde511573362490c290ca71b2bf111dd85c9ca16a7ed9786c15961f", 835 - "md5": "04805f93ad0db2b845584c65aea21f3c", 836 - "size": "280281252" 837 - }, 838 - "linux-ppc64le": { 839 - "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-495.29.05-archive.tar.xz", 840 - "sha256": "70c99be31356f0620971f335cfc9886fe3d6097182c5b823c85ec15758e08933", 841 - "md5": "9ed9d400e2ef25b321a4709052b436e4", 842 - "size": "69613620" 843 - }, 844 - "linux-sbsa": { 845 - "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-495.29.05-archive.tar.xz", 846 - "sha256": "625c72d1d1e14d97c90b3fb8c6d5f7ac3d1649caa10cef1aa13239163672046e", 847 - "md5": "dbc65a82959790a387b1f343481101b4", 848 - "size": "210257752" 849 - } 850 - }, 851 - "nvidia_fs": { 852 - "name": "NVIDIA filesystem", 853 - "license": "CUDA Toolkit", 854 - "version": "2.9.5", 855 - "linux-x86_64": { 856 - "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.9.5-archive.tar.xz", 857 - "sha256": "fd31bcf21b2244f217f9ffaa64cda9c066ed06d68b30925d520f2096a0400b2c", 858 - "md5": "8d66bf76c611305a54e03a0a75ecdcda", 859 - "size": "68004" 860 - } 861 - }, 862 - "visual_studio_integration": { 863 - "name": "CUDA Visual Studio Integration", 864 - "license": "CUDA Toolkit", 865 - "version": "11.5.114", 866 - "windows-x86_64": { 867 - "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.5.114-archive.zip", 868 - "sha256": "fecbef30b4af477da75087f5bdd70dfc6ae4d821ac2bda3f0a50c058fe71813b", 869 - "md5": "15a9e0f0ec782b7ba70b564e27e8c264", 870 - "size": "387859" 871 - } 872 - } 873 - }
-873
pkgs/development/cuda-modules/cuda/manifests/redistrib_11.6.2.json
··· 1 - { 2 - "release_date": "2022-03-24", 3 - "cuda_cccl": { 4 - "name": "CXX Core Compute Libraries", 5 - "license": "CUDA Toolkit", 6 - "version": "11.6.55", 7 - "linux-x86_64": { 8 - "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.6.55-archive.tar.xz", 9 - "sha256": "14aee04c86a47321b9fee1c86c9a640be7729ed8063663ed0c7dafdd77fb18f5", 10 - "md5": "e90bbf846f635ea84290fb518e62e838", 11 - "size": "1002296" 12 - }, 13 - "linux-ppc64le": { 14 - "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.6.55-archive.tar.xz", 15 - "sha256": "cdaa96fc3afe7c552ce31d5b2328072edfbce6c85018455c9e90a572187e84eb", 16 - "md5": "c2178d1d3557c0801c654ff8a9cd2261", 17 - "size": "1002552" 18 - }, 19 - "linux-sbsa": { 20 - "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.6.55-archive.tar.xz", 21 - "sha256": "6de184be2cee64b278befc0839d0b08104f19f6d15358e3bd8a92cefca552e20", 22 - "md5": "78244bc649923a7bdf13ae43391d57a3", 23 - "size": "1001980" 24 - }, 25 - "windows-x86_64": { 26 - "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.6.55-archive.zip", 27 - "sha256": "badc95a0e47e9c2866ebf970dae757c827b91c27820fc75dc28a459c0014bb2f", 28 - "md5": "b3a7384be4e8096125956cbb2d5b8406", 29 - "size": "2559109" 30 - } 31 - }, 32 - "cuda_cudart": { 33 - "name": "CUDA Runtime (cudart)", 34 - "license": "CUDA Toolkit", 35 - "version": "11.6.55", 36 - "linux-x86_64": { 37 - "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.6.55-archive.tar.xz", 38 - "sha256": "734a77b3a26a9d08489d43afb74bad230c7c4a0ed2d17a6317a47cf363dca521", 39 - "md5": "7bfd91b0267ce3cebf56bdba03bd99a9", 40 - "size": "841896" 41 - }, 42 - "linux-ppc64le": { 43 - "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.6.55-archive.tar.xz", 44 - "sha256": "96b9b708bd9f636fe60ae811a09a6bbb0d66c72045eb82dff7f4bbf7b6714110", 45 - "md5": "67b819cb88f54a3133bc44f35b94e5b8", 46 - "size": "786292" 47 - }, 48 - "linux-sbsa": { 49 - "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.6.55-archive.tar.xz", 50 - "sha256": "ae0ba7295280c4b2f2a217bc79cc604a3beb20484011dd2db604507f31fde0a7", 51 - "md5": "3db43585c175429e7670592684500df3", 52 - "size": "785420" 53 - }, 54 - "windows-x86_64": { 55 - "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.6.55-archive.zip", 56 - "sha256": "d73be9aa0d66b282e94c75032763249a753efb9d63de891ae9a1c4a62ed1aca1", 57 - "md5": "35057ff81c5ff246c2198c18476c36ea", 58 - "size": "2938345" 59 - } 60 - }, 61 - "cuda_cuobjdump": { 62 - "name": "cuobjdump", 63 - "license": "CUDA Toolkit", 64 - "version": "11.6.124", 65 - "linux-x86_64": { 66 - "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.6.124-archive.tar.xz", 67 - "sha256": "625c7ce21089a52ae6b0a9a6b7d112b98f219cdcf451b94e6f7e523c437d5db1", 68 - "md5": "973f41a831d158256b19b6768e4d0331", 69 - "size": "112708" 70 - }, 71 - "linux-ppc64le": { 72 - "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.6.124-archive.tar.xz", 73 - "sha256": "36c51224b98b7d040f41240cb12f6b43f61f334de3d6cc26d8ca3f35b50df68e", 74 - "md5": "5f773be10cc49868534eccaf9bb98f86", 75 - "size": "117668" 76 - }, 77 - "linux-sbsa": { 78 - "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.6.124-archive.tar.xz", 79 - "sha256": "1ea90073f8769a8e5a16b4b18245c77fd217ff8d5d484f33475bebda046e5ff5", 80 - "md5": "548c27670912ae14840d897ffb8b2ecb", 81 - "size": "101720" 82 - }, 83 - "windows-x86_64": { 84 - "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.6.124-archive.zip", 85 - "sha256": "609599e7fc20e20cf53e2cf4f2618e467cb1bc00dcb9d09520cd2251bd3056a7", 86 - "md5": "5def9ac8588bcb15eeed361f2bdd78db", 87 - "size": "2539928" 88 - } 89 - }, 90 - "cuda_cupti": { 91 - "name": "CUPTI", 92 - "license": "CUDA Toolkit", 93 - "version": "11.6.124", 94 - "linux-x86_64": { 95 - "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.6.124-archive.tar.xz", 96 - "sha256": "e56a68900e08dc1165cc8efabba1073087ebd5d8742cd16ef463cb3638b5d1a8", 97 - "md5": "1c7d94a562519c1b92b8640606fc1ca4", 98 - "size": "16027484" 99 - }, 100 - "linux-ppc64le": { 101 - "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.6.124-archive.tar.xz", 102 - "sha256": "aac47225b052fd5c316816400a0e4470a8257e3894526e85c1155c81088314e5", 103 - "md5": "cc15ff34145b7ad8d7b0a7fd9ef0ae28", 104 - "size": "8532396" 105 - }, 106 - "linux-sbsa": { 107 - "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.6.124-archive.tar.xz", 108 - "sha256": "8e45eac6e94938de807c44d2f846a0e8996a065b0817c2119948193fec279ca6", 109 - "md5": "fc9530922d0adafcea054efcdaf7579e", 110 - "size": "8370644" 111 - }, 112 - "windows-x86_64": { 113 - "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.6.124-archive.zip", 114 - "sha256": "ff7d4d4d7a83b2fe1bb3b964a44fdc29261470b239fc9c113e91e6b1bf1e9707", 115 - "md5": "ac8391077028cc3eb3775d3eb4099865", 116 - "size": "11384612" 117 - } 118 - }, 119 - "cuda_cuxxfilt": { 120 - "name": "CUDA cuxxfilt (demangler)", 121 - "license": "CUDA Toolkit", 122 - "version": "11.6.124", 123 - "linux-x86_64": { 124 - "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.6.124-archive.tar.xz", 125 - "sha256": "3233b1dc13802701821a2cdebdcee5908ae03c63f457b8574ae1798c75245375", 126 - "md5": "cbef12e45924009f5a6160fcc438fe42", 127 - "size": "185732" 128 - }, 129 - "linux-ppc64le": { 130 - "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.6.124-archive.tar.xz", 131 - "sha256": "1f9d5f7093b6738452bc8311ce6fb13b9a59ede1c6f5476166237a3338002cc4", 132 - "md5": "4dddd337619ee17921f1562a7d98b7d1", 133 - "size": "182032" 134 - }, 135 - "linux-sbsa": { 136 - "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.6.124-archive.tar.xz", 137 - "sha256": "89aea00186991c56d4acc6e9ced0f3e8d9eeca991c8fc1fbc6db1ffc8be17f36", 138 - "md5": "7f9874d247e48d29778e2750be23b1f1", 139 - "size": "172524" 140 - }, 141 - "windows-x86_64": { 142 - "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.6.124-archive.zip", 143 - "sha256": "b1e3ce998310240e60355e75aa3ad6b166fda5cae2c9e59573691f3f6b125ed8", 144 - "md5": "2941018da652cbdb255c644532d00e50", 145 - "size": "168845" 146 - } 147 - }, 148 - "cuda_demo_suite": { 149 - "name": "CUDA Demo Suite", 150 - "license": "CUDA Toolkit", 151 - "version": "11.6.55", 152 - "linux-x86_64": { 153 - "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.6.55-archive.tar.xz", 154 - "sha256": "82da6b7346257c94bf5ad25c93d5bf54eaf97a224b212bd166179a2e3d93f8a1", 155 - "md5": "8330c6571b66865c587755e6c922c213", 156 - "size": "3996208" 157 - }, 158 - "windows-x86_64": { 159 - "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.6.55-archive.zip", 160 - "sha256": "0c4c3be4f185fb9ddf2bb3f012ad506e7a23e39634f685ffe59fac01435b4eef", 161 - "md5": "0e536ea97e3e685e9a73170ca1e693f1", 162 - "size": "5021636" 163 - } 164 - }, 165 - "cuda_documentation": { 166 - "name": "CUDA Documentation", 167 - "license": "CUDA Toolkit", 168 - "version": "11.6.124", 169 - "linux-x86_64": { 170 - "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.6.124-archive.tar.xz", 171 - "sha256": "75a2082caebc02b82ac899c354abd810f2bcd012476ace25fbe56ad78c5bd566", 172 - "md5": "a7eade47d3e3821d7b1a67c9afc1f490", 173 - "size": "66348" 174 - }, 175 - "linux-ppc64le": { 176 - "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.6.124-archive.tar.xz", 177 - "sha256": "a51b38d9925ec6564b26b922f3ef15b3781b9017c056beaa589d9e15384e9994", 178 - "md5": "4d906f72e586f8ca216118730e9880be", 179 - "size": "66572" 180 - }, 181 - "linux-sbsa": { 182 - "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.6.124-archive.tar.xz", 183 - "sha256": "78f6d84ea1cba3547c3f094873062d18d30a1a45cf0af8d89b3dd4c4b03f111e", 184 - "md5": "0af218b799f48e8469fad088cd2c9017", 185 - "size": "66404" 186 - }, 187 - "windows-x86_64": { 188 - "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.6.124-archive.zip", 189 - "sha256": "a4e0d6fc04ead69db208912487303a996dea1f37eeb7b3caff664dca10cf42a8", 190 - "md5": "f055cb3244441fb9785cb38354d22af8", 191 - "size": "104626" 192 - } 193 - }, 194 - "cuda_gdb": { 195 - "name": "CUDA GDB", 196 - "license": "CUDA Toolkit", 197 - "version": "11.6.124", 198 - "linux-x86_64": { 199 - "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.6.124-archive.tar.xz", 200 - "sha256": "95dd2cbf756a2fd3bcb8c9aa71b6ba4ee385430749b9c626849f7cc4ec6e8f29", 201 - "md5": "ba6a284942d5c1d977fc08eb28bff3f9", 202 - "size": "64257284" 203 - }, 204 - "linux-ppc64le": { 205 - "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.6.124-archive.tar.xz", 206 - "sha256": "4aaf9142728e8908db14b23af9e8bcdd77825a80e628ca8be9e0392c997ecf0a", 207 - "md5": "30c6bac5a3c72d7f503c7cd98d644b3b", 208 - "size": "64138892" 209 - }, 210 - "linux-sbsa": { 211 - "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.6.124-archive.tar.xz", 212 - "sha256": "5206bb2a6eb4978ddc7732689d3b94e6b1dd2d655ed6d95a514dd67404d727a4", 213 - "md5": "647cc2598ee0a2d42993b31318c5fc25", 214 - "size": "64040212" 215 - } 216 - }, 217 - "cuda_memcheck": { 218 - "name": "CUDA Memcheck", 219 - "license": "CUDA Toolkit", 220 - "version": "11.6.124", 221 - "linux-x86_64": { 222 - "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.6.124-archive.tar.xz", 223 - "sha256": "5f0983c0945315d4a7beea92793aae4ffac72832870857345e9645edddc2f35b", 224 - "md5": "8db021e48b154f9194f280728b41512e", 225 - "size": "139868" 226 - }, 227 - "linux-ppc64le": { 228 - "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.6.124-archive.tar.xz", 229 - "sha256": "67cb7a5ef1b411864f0af3fc429e74570f8920c3883ee80e1b1989746ffa11cc", 230 - "md5": "af50c409bb97fc1b724b1129bd823fda", 231 - "size": "147996" 232 - }, 233 - "windows-x86_64": { 234 - "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.6.124-archive.zip", 235 - "sha256": "58844652c2ddfe700348b08ef04c8385d8bbf36b89a421ecdcc774667ad04a0d", 236 - "md5": "dcc37dfd92fe296f1563e6b519872725", 237 - "size": "172867" 238 - } 239 - }, 240 - "cuda_nsight": { 241 - "name": "Nsight Eclipse Edition Plugin", 242 - "license": "CUDA Toolkit", 243 - "version": "11.6.124", 244 - "linux-x86_64": { 245 - "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.6.124-archive.tar.xz", 246 - "sha256": "771511b1fedd8b0d684b1fa6c6ff8feacaa0e38010a3f0fba4a02087e0756cbf", 247 - "md5": "51dd87c3625354ef7c7f73689d06c5d4", 248 - "size": "118602976" 249 - }, 250 - "linux-ppc64le": { 251 - "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.6.124-archive.tar.xz", 252 - "sha256": "07b28f88581db1ea1769a89d5fa23af298a385ff4feb14f8dbe801d9cb05a098", 253 - "md5": "418edda7b00500c49cf0731f5ae75c2b", 254 - "size": "118602980" 255 - } 256 - }, 257 - "cuda_nvcc": { 258 - "name": "CUDA NVCC", 259 - "license": "CUDA Toolkit", 260 - "version": "11.6.124", 261 - "linux-x86_64": { 262 - "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.6.124-archive.tar.xz", 263 - "sha256": "8c81199c5a096869a10c284197cefc1a958df8bf482322a0a48dff9cc82291b8", 264 - "md5": "c05aebe81d33e6850bceee7a36f8f2a5", 265 - "size": "36764236" 266 - }, 267 - "linux-ppc64le": { 268 - "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.6.124-archive.tar.xz", 269 - "sha256": "d63f1cf84896e16e0a90c97bab56f77a88449233025299ee96a7997b9522fb0f", 270 - "md5": "2dfc257209fcb7773b8f0664abf3d0af", 271 - "size": "34593028" 272 - }, 273 - "linux-sbsa": { 274 - "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.6.124-archive.tar.xz", 275 - "sha256": "cdca0d230967ccf227063841ae984704a1812663bd0074e400eee57ba47d99a9", 276 - "md5": "24cd10d3274df8ca62297a097b9edf92", 277 - "size": "32366400" 278 - }, 279 - "windows-x86_64": { 280 - "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.6.124-archive.zip", 281 - "sha256": "ab39ba1495ebe474fb74cea2b520bc4a3c80e6953ebf774c6cd4058c50be94e1", 282 - "md5": "5f85971067866e0c8c8af33fb2e4c432", 283 - "size": "46956615" 284 - } 285 - }, 286 - "cuda_nvdisasm": { 287 - "name": "CUDA nvdisasm", 288 - "license": "CUDA Toolkit", 289 - "version": "11.6.124", 290 - "linux-x86_64": { 291 - "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.6.124-archive.tar.xz", 292 - "sha256": "1645505394a9d186741c7c2e07dea05fc1852bfa6a0663fdc53176ffaedff548", 293 - "md5": "55d1a19ce1ad9de70ea6e620fff8c3d2", 294 - "size": "32786504" 295 - }, 296 - "linux-ppc64le": { 297 - "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.6.124-archive.tar.xz", 298 - "sha256": "972744cd85dcb48fb0d313c7deabee246702e7d35443f96503a56ddee1904d00", 299 - "md5": "9690d65addaa1a6c43800570e15d9645", 300 - "size": "32788856" 301 - }, 302 - "linux-sbsa": { 303 - "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.6.124-archive.tar.xz", 304 - "sha256": "d4e5e3eef98659f3d1464576d3ec715469918def222cf7f84851ba06716fa8dd", 305 - "md5": "b5430097ec81b02d7e5c1e6eabd3c801", 306 - "size": "32715804" 307 - }, 308 - "windows-x86_64": { 309 - "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.6.124-archive.zip", 310 - "sha256": "e318fc6ae9b33e6cc657c655a0c1eff5f56828abbea208728619c9bdfc59eb7d", 311 - "md5": "ca2d64b77bcbf3c6aa9fa53b552ca63b", 312 - "size": "32999132" 313 - } 314 - }, 315 - "cuda_nvml_dev": { 316 - "name": "CUDA NVML Headers", 317 - "license": "CUDA Toolkit", 318 - "version": "11.6.55", 319 - "linux-x86_64": { 320 - "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.6.55-archive.tar.xz", 321 - "sha256": "12cbd1279ffe240396cba3c7d8e27fe9b4ee0e0db81850b29462544d83ca23c0", 322 - "md5": "e91c008f71ee4eda2dc32c9a51e6b479", 323 - "size": "74380" 324 - }, 325 - "linux-ppc64le": { 326 - "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.6.55-archive.tar.xz", 327 - "sha256": "6134b127d84ec38c3d496d34214500e22bc455dd13677a957d6d1e2787a27950", 328 - "md5": "56adc2658a5d9e7ac72be9769b0b4d96", 329 - "size": "73936" 330 - }, 331 - "linux-sbsa": { 332 - "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.6.55-archive.tar.xz", 333 - "sha256": "72dbcd80bb8acf675c924fbafa9462122743e37aa51a147f3e07cf0d34044292", 334 - "md5": "491a21dab70c5d4b3dc8145df7737b1b", 335 - "size": "74440" 336 - }, 337 - "windows-x86_64": { 338 - "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.6.55-archive.zip", 339 - "sha256": "35dbf8f8f2974973a52b3363fa3936ce952ce94dc2aabca9aaf1f79039a633b9", 340 - "md5": "4dec589b69ec53618f86d35418b0edb5", 341 - "size": "103281" 342 - } 343 - }, 344 - "cuda_nvprof": { 345 - "name": "CUDA nvprof", 346 - "license": "CUDA Toolkit", 347 - "version": "11.6.124", 348 - "linux-x86_64": { 349 - "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.6.124-archive.tar.xz", 350 - "sha256": "2c05600562bcbe4841cd0d86fdbf2fecba36c54ad393979cb22653dd45487a9b", 351 - "md5": "e22c5dd6199769553ef43ce71e4dae0d", 352 - "size": "1943508" 353 - }, 354 - "linux-ppc64le": { 355 - "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.6.124-archive.tar.xz", 356 - "sha256": "39d891bc85c431551d039a23d249f0c87b723a0d0683a5bf689f2fa4b3cdffd8", 357 - "md5": "faf88332bafdfece1c5e63001271dc9e", 358 - "size": "1598652" 359 - }, 360 - "linux-sbsa": { 361 - "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.6.124-archive.tar.xz", 362 - "sha256": "3e3275bd148fa1c3a73ef468c2a1e633fe736cb1b1c834a2693a177be9e3cbc9", 363 - "md5": "abd2a3edafc9e1a069844559ca0b6352", 364 - "size": "16148" 365 - }, 366 - "windows-x86_64": { 367 - "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.6.124-archive.zip", 368 - "sha256": "4c965334058241f8d3cff2d1d8f37d8745796c0913e8fc440673dcc55c630808", 369 - "md5": "85f85e5eb14b46756f67413e45237a8c", 370 - "size": "1603422" 371 - } 372 - }, 373 - "cuda_nvprune": { 374 - "name": "CUDA nvprune", 375 - "license": "CUDA Toolkit", 376 - "version": "11.6.124", 377 - "linux-x86_64": { 378 - "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.6.124-archive.tar.xz", 379 - "sha256": "0b1f79447efedef09c54d517eff994995b36d486f642379fd278ddbb4d29f5ea", 380 - "md5": "644603927c6d326fb5fd4e6e3e23aa67", 381 - "size": "55168" 382 - }, 383 - "linux-ppc64le": { 384 - "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.6.124-archive.tar.xz", 385 - "sha256": "5c6bd788e9575fc09f9e687b15123ad4bdde25008425c7f0108e319a952f5273", 386 - "md5": "065bc537a28f5b8ccf546af677391e7a", 387 - "size": "55876" 388 - }, 389 - "linux-sbsa": { 390 - "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.6.124-archive.tar.xz", 391 - "sha256": "6b9c0df46418b682497feeac9cf56edfc5679e06d60a94158732aac125aa560d", 392 - "md5": "e547bc9e771de95ccac8f5945a7c6ed9", 393 - "size": "47532" 394 - }, 395 - "windows-x86_64": { 396 - "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.6.124-archive.zip", 397 - "sha256": "991f7574ef06eef1f63e94af188d48e360b7ffcebe6fe5b9e088d91b6579009e", 398 - "md5": "cb3517ad769c0b0935a76fac1a976f91", 399 - "size": "144822" 400 - } 401 - }, 402 - "cuda_nvrtc": { 403 - "name": "CUDA NVRTC", 404 - "license": "CUDA Toolkit", 405 - "version": "11.6.124", 406 - "linux-x86_64": { 407 - "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.6.124-archive.tar.xz", 408 - "sha256": "9086e9f0ac56337d8e80d3cd1d78f79633f8725cdd0bb5a9864311a2ba95c1e0", 409 - "md5": "01bf28fce5c9140190d9750e1585e7a8", 410 - "size": "27889392" 411 - }, 412 - "linux-ppc64le": { 413 - "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.6.124-archive.tar.xz", 414 - "sha256": "68b89b68b820c87e32c830b95c7496f814854d213997701f6c0abe78827aa184", 415 - "md5": "ab3a2658922c08ed944889f61d634224", 416 - "size": "26054036" 417 - }, 418 - "linux-sbsa": { 419 - "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.6.124-archive.tar.xz", 420 - "sha256": "140d6587924f95fa6a9fbd7ad9a2d57b276ae71f1738b2b6bebfd0a8317b7e6d", 421 - "md5": "b29a768f5bcbf995e8ee1e8bc6c6fd34", 422 - "size": "25908284" 423 - }, 424 - "windows-x86_64": { 425 - "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.6.124-archive.zip", 426 - "sha256": "ea5d8de24af80840bcf7d8f91ab1385366ca736485c52910fe269f845711b28f", 427 - "md5": "dc650c5a417e7532633408809c10900a", 428 - "size": "92877744" 429 - } 430 - }, 431 - "cuda_nvtx": { 432 - "name": "CUDA NVTX", 433 - "license": "CUDA Toolkit", 434 - "version": "11.6.124", 435 - "linux-x86_64": { 436 - "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.6.124-archive.tar.xz", 437 - "sha256": "02a4fe16e715f6f9d3d6e25a5504c8a2cccab52da40ebbcf21919f002a0ac951", 438 - "md5": "f9b29c3d4034abb5316220674ad3796c", 439 - "size": "48124" 440 - }, 441 - "linux-ppc64le": { 442 - "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.6.124-archive.tar.xz", 443 - "sha256": "fc65a9caca20c892b4bd4f2b6e635e501582fe10474cb3d2ba6f7ed50b2860c1", 444 - "md5": "52a5a1846fc0c83072712e969329af75", 445 - "size": "48140" 446 - }, 447 - "linux-sbsa": { 448 - "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.6.124-archive.tar.xz", 449 - "sha256": "f0e7d4f1824ff125b23cb48d37d76034c9daff787cef08316188219269df8220", 450 - "md5": "a67329ea6a2171272a9d1bd36933977f", 451 - "size": "48708" 452 - }, 453 - "windows-x86_64": { 454 - "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.6.124-archive.zip", 455 - "sha256": "9e82e18c38ed82aa5beb8aedf4a04770b59ad73113ac9e4e5c4e1e68dc999dad", 456 - "md5": "853296d1ab5efa56a0290c1fc18ff82f", 457 - "size": "65732" 458 - } 459 - }, 460 - "cuda_nvvp": { 461 - "name": "CUDA NVVP", 462 - "license": "CUDA Toolkit", 463 - "version": "11.6.124", 464 - "linux-x86_64": { 465 - "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.6.124-archive.tar.xz", 466 - "sha256": "bc7ec46b93ce7f8c2399a4d8840e7ed7961a784ef462eaa94c66d81e9725286b", 467 - "md5": "892580326407fc2b16abaa72d05f27e9", 468 - "size": "114308284" 469 - }, 470 - "linux-ppc64le": { 471 - "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.6.124-archive.tar.xz", 472 - "sha256": "672e016a3127ec28d4ddf063bd91baab482c34dd073d839e45fc3c50c1466705", 473 - "md5": "c6eb99303f62d4c3c6d240b8f00f2f0f", 474 - "size": "113832776" 475 - }, 476 - "windows-x86_64": { 477 - "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.6.124-archive.zip", 478 - "sha256": "374c183ddd5a127a0973fbf2e3dd0cb89d9968ca77bfeab8a3f44529fdc326a4", 479 - "md5": "9f00a05cd166bd92a0ae5cc051540e55", 480 - "size": "120342885" 481 - } 482 - }, 483 - "cuda_sanitizer_api": { 484 - "name": "CUDA Compute Sanitizer API", 485 - "license": "CUDA Toolkit", 486 - "version": "11.6.124", 487 - "linux-x86_64": { 488 - "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.6.124-archive.tar.xz", 489 - "sha256": "a6d81ec79be73fe23c7cd16054e9f0494e82dd14ee77ef07c4819af6248c5bfa", 490 - "md5": "31816ee26b4fdd9c0c4f8e85cf723868", 491 - "size": "7988992" 492 - }, 493 - "linux-ppc64le": { 494 - "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.6.124-archive.tar.xz", 495 - "sha256": "3c39b6e7a23c19f91f5d25a2a2d752a15407eddc460c1c56a8e7ae7f8864ec4f", 496 - "md5": "266196017ee59c3058c6c0ffc035ebe0", 497 - "size": "7404564" 498 - }, 499 - "linux-sbsa": { 500 - "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.6.124-archive.tar.xz", 501 - "sha256": "d7c55c5a600782d3aa10b5a3a898445a57997394ea626e2e4789f7923a927334", 502 - "md5": "4f3a68e4fa789ba3dcbb7e12bd77abf7", 503 - "size": "6123224" 504 - }, 505 - "windows-x86_64": { 506 - "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.6.124-archive.zip", 507 - "sha256": "24d24151b77b1051be2035176475f33d2b260c8a20a3fe1af99ca312490721a8", 508 - "md5": "dc713ceb5f52e2936df2146693e2bdde", 509 - "size": "13126684" 510 - } 511 - }, 512 - "fabricmanager": { 513 - "name": "NVIDIA Fabric Manager", 514 - "license": "NVIDIA Driver", 515 - "version": "510.47.03", 516 - "linux-x86_64": { 517 - "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-510.47.03-archive.tar.xz", 518 - "sha256": "d5c7204160f7b2c688932f90648995bd3bf3a821d99161cefb7e7a9539e22a6f", 519 - "md5": "43dc2904ab88fba0739c8265466f0972", 520 - "size": "1528776" 521 - } 522 - }, 523 - "libcublas": { 524 - "name": "CUDA cuBLAS", 525 - "license": "CUDA Toolkit", 526 - "version": "11.9.2.110", 527 - "linux-x86_64": { 528 - "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.9.2.110-archive.tar.xz", 529 - "sha256": "ea2395ea76a811498863774491721d5c4b491fd1498221ef7cb1ae514e6518cb", 530 - "md5": "e46be77087fc85134fb7c85a158f6964", 531 - "size": "434133064" 532 - }, 533 - "linux-ppc64le": { 534 - "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.9.2.110-archive.tar.xz", 535 - "sha256": "81c729d78ef775958a0aadf2a02ee7f56d826e9b4130d564b9ea92aed6f2998d", 536 - "md5": "658162cbc2982de03d0703400ee8a2b8", 537 - "size": "434108428" 538 - }, 539 - "linux-sbsa": { 540 - "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.9.2.110-archive.tar.xz", 541 - "sha256": "8201009b6df0924d599731bcf309190b8e8e3c1eebff0226f12107ca3f5f86dd", 542 - "md5": "56278d0d28664be11c1e53074cf13432", 543 - "size": "434332668" 544 - }, 545 - "windows-x86_64": { 546 - "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.9.2.110-archive.zip", 547 - "sha256": "13f5119c43128ccda66ab092bad4435313cf06cb892247e38cb2ec1d8bc96c90", 548 - "md5": "52b685ec11fd3384e49e84243627a0aa", 549 - "size": "324277131" 550 - } 551 - }, 552 - "libcufft": { 553 - "name": "CUDA cuFFT", 554 - "license": "CUDA Toolkit", 555 - "version": "10.7.2.124", 556 - "linux-x86_64": { 557 - "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.7.2.124-archive.tar.xz", 558 - "sha256": "95397578c2d18d5df17dafa42cf34d47821953c6d5c9bdba45c7b673ba07276a", 559 - "md5": "e4b681b1a42bfbbfae92995a244d0f23", 560 - "size": "214961728" 561 - }, 562 - "linux-ppc64le": { 563 - "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.7.2.124-archive.tar.xz", 564 - "sha256": "db425ae3fccbb68a28f0f461a6a022856081d16d06da3a99e903975a89a5d4b1", 565 - "md5": "e0ffc2b9175cefb33b3df4fc6623d882", 566 - "size": "214897136" 567 - }, 568 - "linux-sbsa": { 569 - "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.7.2.124-archive.tar.xz", 570 - "sha256": "b132fc468d46a90baac45f8f0484675cc4552120d5912c9c7612d7346c7db9bf", 571 - "md5": "639a4f80a557168fc7ae222fec491e50", 572 - "size": "214000212" 573 - }, 574 - "windows-x86_64": { 575 - "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.7.2.124-archive.zip", 576 - "sha256": "d7a613f9bb647695947cdd0514abed09fb82c0934461cedab629f6471f4adaf7", 577 - "md5": "83aeb1b3eaa9246b2f06f37d94e9f07f", 578 - "size": "287132168" 579 - } 580 - }, 581 - "libcufile": { 582 - "name": "CUDA cuFile", 583 - "license": "CUDA Toolkit", 584 - "version": "1.2.1.4", 585 - "linux-x86_64": { 586 - "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.2.1.4-archive.tar.xz", 587 - "sha256": "ebc164ebffee7dbe87ae8cc3e37fcf6499750aa9f7003ea0cc4f3bc7c7f3a56d", 588 - "md5": "ae8cd1900e9947cdb8acdd9726befe29", 589 - "size": "46744444" 590 - } 591 - }, 592 - "libcurand": { 593 - "name": "CUDA cuRAND", 594 - "license": "CUDA Toolkit", 595 - "version": "10.2.9.124", 596 - "linux-x86_64": { 597 - "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.9.124-archive.tar.xz", 598 - "sha256": "87b1d70ec749db31cabb79ae5034b05883666e1848aa3feca643ea4a68dea47e", 599 - "md5": "e7657f67965d162b519c2471ca0f7c08", 600 - "size": "82095344" 601 - }, 602 - "linux-ppc64le": { 603 - "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.9.124-archive.tar.xz", 604 - "sha256": "162a42c9e98fd3809541a04dc67933b43f2a85d8d9a749ca247d2be049b7c4d8", 605 - "md5": "ba67c380f521a245192fb589cc208edd", 606 - "size": "82140836" 607 - }, 608 - "linux-sbsa": { 609 - "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.9.124-archive.tar.xz", 610 - "sha256": "c084db363510f6a2f628401494372edc1a841b0fabf95d80e86b852b27a299f5", 611 - "md5": "5021f94b32de1099a52bbfd02d08be17", 612 - "size": "82081332" 613 - }, 614 - "windows-x86_64": { 615 - "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.9.124-archive.zip", 616 - "sha256": "6bbb3c33f76813a96b1cec51d723d0d53704f3b7fedaf6c29f4c84f1bcb73a4e", 617 - "md5": "4914ba32fc23a9076f51f8755909c258", 618 - "size": "53645700" 619 - } 620 - }, 621 - "libcusolver": { 622 - "name": "CUDA cuSOLVER", 623 - "license": "CUDA Toolkit", 624 - "version": "11.3.4.124", 625 - "linux-x86_64": { 626 - "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.3.4.124-archive.tar.xz", 627 - "sha256": "adbd0af1f84aea29859c217e028c1a74a5b3a90acce7d679790efd73aff28462", 628 - "md5": "1f7211cc6ae6e8afd1387469a5e9a9a9", 629 - "size": "77918104" 630 - }, 631 - "linux-ppc64le": { 632 - "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.3.4.124-archive.tar.xz", 633 - "sha256": "6b9ab64258e970f6966c133dab767db03dac038cf047641fb677ce9334e53262", 634 - "md5": "f8b2f8280e8863de318212199fe72494", 635 - "size": "78066772" 636 - }, 637 - "linux-sbsa": { 638 - "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.3.4.124-archive.tar.xz", 639 - "sha256": "bb0dcef4d8c4e076a724d1a0a7258bffb6e9a9c49357716ed70466b3403eb4e3", 640 - "md5": "8fced4d6324195575d28464026d26125", 641 - "size": "77371768" 642 - }, 643 - "windows-x86_64": { 644 - "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.3.4.124-archive.zip", 645 - "sha256": "80d602eef188a19779b0beabb6f3fd9f8eb52ce8c8c61d31a792351d85053996", 646 - "md5": "123c3e9a0e0933e4c414a28fd382ea7d", 647 - "size": "110462365" 648 - } 649 - }, 650 - "libcusparse": { 651 - "name": "CUDA cuSPARSE", 652 - "license": "CUDA Toolkit", 653 - "version": "11.7.2.124", 654 - "linux-x86_64": { 655 - "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.2.124-archive.tar.xz", 656 - "sha256": "744affcbe5ecc8ca9438f20cf93e43a1648d682f6badfa4494f76ae26a350edc", 657 - "md5": "b663b089be7b8dba687da98ed9fcf1dd", 658 - "size": "218747728" 659 - }, 660 - "linux-ppc64le": { 661 - "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.2.124-archive.tar.xz", 662 - "sha256": "97a3abd633cb0c7ce941fdb4f98e82ddd064605c2a864ad4c35eabcca1bfe7c4", 663 - "md5": "6468ea649e2cd9be3541abc0b5a9d7a9", 664 - "size": "218901148" 665 - }, 666 - "linux-sbsa": { 667 - "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.2.124-archive.tar.xz", 668 - "sha256": "4962d79be52338c911fb5612bb2f7562aa41bda0ec474fc096524bf9dd762922", 669 - "md5": "1c49c2c1b950b4c874f4254490da1b82", 670 - "size": "218441052" 671 - }, 672 - "windows-x86_64": { 673 - "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.2.124-archive.zip", 674 - "sha256": "4c33673bb1de12005b26fbf5139b6b9e25fbf4490839205036e060af27c1f789", 675 - "md5": "f32317cca576ab805ec381be38ef225c", 676 - "size": "180394097" 677 - } 678 - }, 679 - "libnpp": { 680 - "name": "CUDA NPP", 681 - "license": "CUDA Toolkit", 682 - "version": "11.6.3.124", 683 - "linux-x86_64": { 684 - "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.6.3.124-archive.tar.xz", 685 - "sha256": "be4afe097cc38eea91ef02aea233db9fa3ba7a31bc115fc287e10812441ee5c2", 686 - "md5": "8300ad8d28a906c386f5338187aee660", 687 - "size": "165187052" 688 - }, 689 - "linux-ppc64le": { 690 - "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.6.3.124-archive.tar.xz", 691 - "sha256": "b55dc9d7e32319a007374cbb191dba1bce1973857a0ae0cc684a4c87e39ac23a", 692 - "md5": "86e2f863047db392473fb438a9112206", 693 - "size": "165756596" 694 - }, 695 - "linux-sbsa": { 696 - "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.6.3.124-archive.tar.xz", 697 - "sha256": "dd3fbe515b0bca6393de5829fb675f8fae9bfa23f0cd5e94a87643088935aa32", 698 - "md5": "e62dd0d88f234764c097f8a112f61d35", 699 - "size": "164248860" 700 - }, 701 - "windows-x86_64": { 702 - "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.6.3.124-archive.zip", 703 - "sha256": "647e78458636d462698fbdbd26c99d4956c917a25a7fd6d2e516a7035a52c857", 704 - "md5": "bf43f99df8934740762e5dd6e1419198", 705 - "size": "125797073" 706 - } 707 - }, 708 - "libnvidia_nscq": { 709 - "name": "NVIDIA NSCQ API", 710 - "license": "NVIDIA Driver", 711 - "version": "510.47.03", 712 - "linux-x86_64": { 713 - "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-510.47.03-archive.tar.xz", 714 - "sha256": "187b07fc6dae26f43bd23276acaf8177f15b32831cde4d21df6abfd6915d30c4", 715 - "md5": "d13ca7a0403dd22e9441434b617a2d5f", 716 - "size": "316976" 717 - } 718 - }, 719 - "libnvjpeg": { 720 - "name": "CUDA nvJPEG", 721 - "license": "CUDA Toolkit", 722 - "version": "11.6.2.124", 723 - "linux-x86_64": { 724 - "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.6.2.124-archive.tar.xz", 725 - "sha256": "ed9f4be96412134195aecbe15b281f3ac8e9b954e0fc62df9279169cf0e0f50b", 726 - "md5": "dffc64101ced535bf63604421c4afaa8", 727 - "size": "2045660" 728 - }, 729 - "linux-ppc64le": { 730 - "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.6.2.124-archive.tar.xz", 731 - "sha256": "377f5acfc5c25a983b0c3043b6fb9da7077d4d571481b62b091e162d8d8fe3c5", 732 - "md5": "04f6a60f6c53ce31671e2eeda8f0638e", 733 - "size": "2077792" 734 - }, 735 - "linux-sbsa": { 736 - "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.6.2.124-archive.tar.xz", 737 - "sha256": "badbe50dab52403cd152c907c9be7271a25c7e0b2bf7377a1cee13bd63f6c008", 738 - "md5": "7c7fa8c7ca5d129b2f7d775cb4ac96a1", 739 - "size": "1864404" 740 - }, 741 - "windows-x86_64": { 742 - "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.6.2.124-archive.zip", 743 - "sha256": "9a04433b80bb5374c0dcf21e1988a66d6d61009dd431668e5ef412baf1167796", 744 - "md5": "99d01192cc9c040b7d2a54ae2b7ea2a3", 745 - "size": "2050577" 746 - } 747 - }, 748 - "nsight_compute": { 749 - "name": "Nsight Compute", 750 - "license": "NVIDIA SLA", 751 - "version": "2022.1.1.2", 752 - "linux-x86_64": { 753 - "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.1.1.2-archive.tar.xz", 754 - "sha256": "ce3248dc64ec05ad1eb174c7114dda02e3023a4ee9adfe457b662289e3134140", 755 - "md5": "c1d851ebf7528107555861b4fbc83948", 756 - "size": "410930844" 757 - }, 758 - "linux-ppc64le": { 759 - "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.1.1.2-archive.tar.xz", 760 - "sha256": "84c9fdad8865c2c3f505ee781f95b546a8ce5ef712cb43fc856c0c62be9bab24", 761 - "md5": "4e0660c401e2861bd3a5fa81a44c6fbf", 762 - "size": "123752204" 763 - }, 764 - "linux-sbsa": { 765 - "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.1.1.2-archive.tar.xz", 766 - "sha256": "5016436938039b284d422a27a954e7483cc15a5d33c512525c2ded860c062747", 767 - "md5": "241420674893c0dd375847ece4fa4abc", 768 - "size": "121981328" 769 - }, 770 - "windows-x86_64": { 771 - "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.1.1.2-archive.zip", 772 - "sha256": "4f709728da79048cc50c6079a5f5dd3b7e35c363163484e7f89f8a2595b8d633", 773 - "md5": "27cdc4affc4d3227905901ae5895e0b4", 774 - "size": "348353793" 775 - } 776 - }, 777 - "nsight_nvtx": { 778 - "name": "Nsight NVTX", 779 - "license": "CUDA Toolkit", 780 - "version": "1.21018621", 781 - "windows-x86_64": { 782 - "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 783 - "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 784 - "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 785 - "size": "315692" 786 - } 787 - }, 788 - "nsight_systems": { 789 - "name": "Nsight Systems", 790 - "license": "NVIDIA SLA", 791 - "version": "2021.5.2.53", 792 - "linux-x86_64": { 793 - "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2021.5.2.53-archive.tar.xz", 794 - "sha256": "27b8c6a171efc5b815035f7e9c9229bdc2c239c1da1956df687f80f78c03c70c", 795 - "md5": "20dcf79c9b387fcc66956182d56fa7ef", 796 - "size": "161956304" 797 - }, 798 - "linux-ppc64le": { 799 - "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2021.5.2.53-archive.tar.xz", 800 - "sha256": "7c76f0b6e35add162be0a55cb8b673960e2d6e9907875379fd70345c6fbb05d4", 801 - "md5": "5bc90d4adc83492fc65191c9a1e33d41", 802 - "size": "47184992" 803 - }, 804 - "linux-sbsa": { 805 - "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2021.5.2.53-archive.tar.xz", 806 - "sha256": "22bd8ec797d2734b701e5bf62ec095d82687a3eb5daf01a7657cd1aab896fc6d", 807 - "md5": "1a4e2b8212f8cef37d16c23c9440f680", 808 - "size": "47348636" 809 - }, 810 - "windows-x86_64": { 811 - "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2021.5.2.53-archive.zip", 812 - "sha256": "6cd2caa431d703f1c54eb65cba2508c150ae115c0b20a58f6c96839bcbc23406", 813 - "md5": "07582800aee2a476463f866aa25f8a0a", 814 - "size": "304567470" 815 - } 816 - }, 817 - "nsight_vse": { 818 - "name": "Nsight Visual Studio Edition (VSE)", 819 - "license": "NVIDIA SLA", 820 - "version": "2022.1.1.22006", 821 - "windows-x86_64": { 822 - "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.1.1.22006-archive.zip", 823 - "sha256": "92c0a591401e085a2ade6688866fa93fb1562d98e4d8321a252b1143e364192a", 824 - "md5": "67304f264ab92d5ac6706fb0bf3f6eac", 825 - "size": "455973381" 826 - } 827 - }, 828 - "nvidia_driver": { 829 - "name": "NVIDIA Linux Driver", 830 - "license": "NVIDIA Driver", 831 - "version": "510.47.03", 832 - "linux-x86_64": { 833 - "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-510.47.03-archive.tar.xz", 834 - "sha256": "668a653cb4e9b89279a31c2fac23306c80b8f2b4b27b4e066cfe322d9347e1b7", 835 - "md5": "b9a80476a86e6186645c37b7a9a7791a", 836 - "size": "327247384" 837 - }, 838 - "linux-ppc64le": { 839 - "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-510.47.03-archive.tar.xz", 840 - "sha256": "28c278660d10ba63420990e164aafd866a9907a66323db9570ad1a9ada37ae0f", 841 - "md5": "0a3f82d50ea4ac361eb2def1d763947f", 842 - "size": "73666716" 843 - }, 844 - "linux-sbsa": { 845 - "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-510.47.03-archive.tar.xz", 846 - "sha256": "1f2e0b90621f67477d5bfcd8ff28b01eca9cdb79a2ba911b07671953e44618ad", 847 - "md5": "d555c62d414121623b4906ecb3de06e8", 848 - "size": "211721052" 849 - } 850 - }, 851 - "nvidia_fs": { 852 - "name": "NVIDIA filesystem", 853 - "license": "CUDA Toolkit", 854 - "version": "2.11.0", 855 - "linux-x86_64": { 856 - "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.11.0-archive.tar.xz", 857 - "sha256": "ea260e5e8c9df3d4f1448684350a0fa7931dd45918329bda96378b173ea63b24", 858 - "md5": "676b88c768132bd4775c91291af90b55", 859 - "size": "69588" 860 - } 861 - }, 862 - "visual_studio_integration": { 863 - "name": "CUDA Visual Studio Integration", 864 - "license": "CUDA Toolkit", 865 - "version": "11.6.124", 866 - "windows-x86_64": { 867 - "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.6.124-archive.zip", 868 - "sha256": "0a8e288bb604dc2af766f65042aeb4675a7b15629e71c7c3341d0fd8aab2de91", 869 - "md5": "248f627cccca3ee81c561aaea5193271", 870 - "size": "517139" 871 - } 872 - } 873 - }
-885
pkgs/development/cuda-modules/cuda/manifests/redistrib_11.7.1.json
··· 1 - { 2 - "release_date": "2022-08-03", 3 - "cuda_cccl": { 4 - "name": "CXX Core Compute Libraries", 5 - "license": "CUDA Toolkit", 6 - "version": "11.7.91", 7 - "linux-x86_64": { 8 - "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.7.91-archive.tar.xz", 9 - "sha256": "bf051d7b22581e31fac992c12af1400036d38e6a53e230b08f2aac3fa93d593e", 10 - "md5": "ba8caa16f0f0b2a34d65a83b501369eb", 11 - "size": "1004116" 12 - }, 13 - "linux-ppc64le": { 14 - "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.7.91-archive.tar.xz", 15 - "sha256": "5c4c56a91054e0bff1052b1359774c86b2d10f0bd0712d50cdc78b5ea636f6ee", 16 - "md5": "55710f4bf751a12b3bb0525cc3794e1a", 17 - "size": "1004352" 18 - }, 19 - "linux-sbsa": { 20 - "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.7.91-archive.tar.xz", 21 - "sha256": "1137f6b08aac445070ed467e61fb68494339b798a1c6e1929647e87053b05c86", 22 - "md5": "3a5cb39720d7be44f32eb1331326a9ec", 23 - "size": "1004092" 24 - }, 25 - "windows-x86_64": { 26 - "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.7.91-archive.zip", 27 - "sha256": "638ec54f6d180d17c6f70ba45e7694a29f1d7014a434e4f1c081198c04017147", 28 - "md5": "a5f9bf5a16ed2a7c0132168c1e0782c4", 29 - "size": "2563581" 30 - } 31 - }, 32 - "cuda_cudart": { 33 - "name": "CUDA Runtime (cudart)", 34 - "license": "CUDA Toolkit", 35 - "version": "11.7.99", 36 - "linux-x86_64": { 37 - "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.7.99-archive.tar.xz", 38 - "sha256": "7892409299c6865d0652373cb385add31b0faa2e5421a931ae9fbc103e1472ad", 39 - "md5": "31bf77729efe1d1f09ff65faba0f67f8", 40 - "size": "854756" 41 - }, 42 - "linux-ppc64le": { 43 - "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.7.99-archive.tar.xz", 44 - "sha256": "0a326ec6b1abcc6e54172a09bf9ba44b3b75ae536eb1287ebf4baa76609012c9", 45 - "md5": "d007dc5ec2752717db482e1d0ec4c70e", 46 - "size": "795684" 47 - }, 48 - "linux-sbsa": { 49 - "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.7.99-archive.tar.xz", 50 - "sha256": "b7c90ae963e67825b9b518062902d4b80a55a3f3ada6f5bb3a7c19b8e93df024", 51 - "md5": "1ffd4fde62beb2c429837a365aea5760", 52 - "size": "798380" 53 - }, 54 - "windows-x86_64": { 55 - "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.7.99-archive.zip", 56 - "sha256": "1eb967fe01843dbe4b41a43352df193018077dd28b06eb2fd5af897b03f92d5c", 57 - "md5": "c8cc7f3f93444de4652a6fb2b08c2397", 58 - "size": "2884857" 59 - } 60 - }, 61 - "cuda_cuobjdump": { 62 - "name": "cuobjdump", 63 - "license": "CUDA Toolkit", 64 - "version": "11.7.91", 65 - "linux-x86_64": { 66 - "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.7.91-archive.tar.xz", 67 - "sha256": "a345694cf430a668b2fb9aac34e01b373c4283751cd8ee3f91439c8c9613455d", 68 - "md5": "6584e15dac6ce66f10f0f76ac618c1ea", 69 - "size": "127260" 70 - }, 71 - "linux-ppc64le": { 72 - "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.7.91-archive.tar.xz", 73 - "sha256": "345dc2651a8e069a766ee9ceaa7052764964fbb75d17c765bd1f3656f22e45b6", 74 - "md5": "c82c84e46f6d2c4c154faa81d341e3ec", 75 - "size": "140532" 76 - }, 77 - "linux-sbsa": { 78 - "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.7.91-archive.tar.xz", 79 - "sha256": "f408a0534081a1e8e3cc2b3aaec33f9ba09c7c60bdd8a6d20b3ec69c688a576e", 80 - "md5": "71e958168e3d637751f3bb2f948a0d8e", 81 - "size": "124120" 82 - }, 83 - "windows-x86_64": { 84 - "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.7.91-archive.zip", 85 - "sha256": "6024efc79c78668de3e21b608035e77f1d40dc7bb250630255d627ccb2e51380", 86 - "md5": "5034e6496a31fb6c8b722590076f41a0", 87 - "size": "2523878" 88 - } 89 - }, 90 - "cuda_cupti": { 91 - "name": "CUPTI", 92 - "license": "CUDA Toolkit", 93 - "version": "11.7.101", 94 - "linux-x86_64": { 95 - "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.7.101-archive.tar.xz", 96 - "sha256": "7193f5d9b23e91b5cc34df57f7500f891b8461c1ace2d2489beed38da6d22f23", 97 - "md5": "8251f46de255ad61d1fa5df01de6d44f", 98 - "size": "16923928" 99 - }, 100 - "linux-ppc64le": { 101 - "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.7.101-archive.tar.xz", 102 - "sha256": "6f99b8a421235932974d7b14a20b8e61e7f5e65efc65b73b9f8455ef7627dbce", 103 - "md5": "396fc8ebdeca795b4553e0837d1f5900", 104 - "size": "8661172" 105 - }, 106 - "linux-sbsa": { 107 - "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.7.101-archive.tar.xz", 108 - "sha256": "42c2f7b9734a18dec5f63b954e3bc1ff45f4283b1707d88e7eb298d40c2a7390", 109 - "md5": "103742737a3f76cc7fe53926cbcec00e", 110 - "size": "8506536" 111 - }, 112 - "windows-x86_64": { 113 - "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.7.101-archive.zip", 114 - "sha256": "9d2d98b73cf70165a0c7652b5c764da2816209f519a8c73cdf01733a83502170", 115 - "md5": "0103f854be9331a3fed35d1d2f1217e5", 116 - "size": "11548637" 117 - } 118 - }, 119 - "cuda_cuxxfilt": { 120 - "name": "CUDA cuxxfilt (demangler)", 121 - "license": "CUDA Toolkit", 122 - "version": "11.7.91", 123 - "linux-x86_64": { 124 - "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.7.91-archive.tar.xz", 125 - "sha256": "7d6c8074e76fdcf294569a92883355b71ac591c0c117daf0752320f60e254506", 126 - "md5": "cf471de3ea0d22b0382e4c32abcba2fd", 127 - "size": "186264" 128 - }, 129 - "linux-ppc64le": { 130 - "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.7.91-archive.tar.xz", 131 - "sha256": "f44e311983ced0ab98fed509b08a682b2c9f9c93d31bc3f7bec4dacfe6c24d22", 132 - "md5": "84f06154873f165a427e457c5bb367b3", 133 - "size": "181312" 134 - }, 135 - "linux-sbsa": { 136 - "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.7.91-archive.tar.xz", 137 - "sha256": "e9798ddebc419fdc03bfe627cd1c8a3a683fd87b7f0a0b0ee2b76bfc98e951f1", 138 - "md5": "9b42db5debcbd34c96ea11a975d8a487", 139 - "size": "172664" 140 - }, 141 - "windows-x86_64": { 142 - "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.7.91-archive.zip", 143 - "sha256": "af41ea6a2673222cfea3aaf77ba369b17741cbed528f4d4482341d9f00a2cd18", 144 - "md5": "a16ae2cef58dd60a6f505a4525a85e4e", 145 - "size": "168946" 146 - } 147 - }, 148 - "cuda_demo_suite": { 149 - "name": "CUDA Demo Suite", 150 - "license": "CUDA Toolkit", 151 - "version": "11.7.91", 152 - "linux-x86_64": { 153 - "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.7.91-archive.tar.xz", 154 - "sha256": "f1ec9416a2bee5ceea0e7db9ba1936d661b5a5ab5193d19219d646018f789048", 155 - "md5": "a6eddd4dc84a1996cf42d186307aa582", 156 - "size": "3987624" 157 - }, 158 - "windows-x86_64": { 159 - "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.7.91-archive.zip", 160 - "sha256": "5116656f74f894707e4eb3eb0028a8fc935b905f5fc3e7aa8ca7c4ee5454ce95", 161 - "md5": "760a960af1d6565f15aa83df0fa3c3cf", 162 - "size": "5023831" 163 - } 164 - }, 165 - "cuda_documentation": { 166 - "name": "CUDA Documentation", 167 - "license": "CUDA Toolkit", 168 - "version": "11.7.91", 169 - "linux-x86_64": { 170 - "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.7.91-archive.tar.xz", 171 - "sha256": "680d7b7df3b627eb00046d9b051120a5568306a405c97fec46ce005d4cde7177", 172 - "md5": "5ffc2d1e1b59a640b9a9889830d2fd4d", 173 - "size": "65688" 174 - }, 175 - "linux-ppc64le": { 176 - "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.7.91-archive.tar.xz", 177 - "sha256": "229b39ec29343137f2cf3a77cb0b1de5546b0dfbf8a7c0ffb82b7e2348f2d70a", 178 - "md5": "18a638ca4c87283393a91b003e1552bb", 179 - "size": "65892" 180 - }, 181 - "linux-sbsa": { 182 - "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.7.91-archive.tar.xz", 183 - "sha256": "bdfdad5afcb5e2a2915f1c0b6af022ae4c2496af66928bbcd2b6148fa1cb02f9", 184 - "md5": "48358932a272ad97c5d87368b31c7895", 185 - "size": "65696" 186 - }, 187 - "windows-x86_64": { 188 - "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.7.91-archive.zip", 189 - "sha256": "47571f8292a07552388fe92eaea6e571a8cdc6bf4aa0d87795232cd4c6256242", 190 - "md5": "7f435e81b21d65224d056d8e1f2a2293", 191 - "size": "103883" 192 - } 193 - }, 194 - "cuda_gdb": { 195 - "name": "CUDA GDB", 196 - "license": "CUDA Toolkit", 197 - "version": "11.7.91", 198 - "linux-x86_64": { 199 - "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.7.91-archive.tar.xz", 200 - "sha256": "88139baf0eff8350f5250bfa0b335d6a8a21efb125e5340264cf715c6f717dee", 201 - "md5": "1b7ba763ba29aa3b867313daac3f6306", 202 - "size": "64326484" 203 - }, 204 - "linux-ppc64le": { 205 - "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.7.91-archive.tar.xz", 206 - "sha256": "31f91a7c13d2524bde919b2cd0f4d946522af58a0937341606e96e8e5099b8af", 207 - "md5": "5e294385247fc88eaef4c27e2f2b26b0", 208 - "size": "64156680" 209 - }, 210 - "linux-sbsa": { 211 - "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.7.91-archive.tar.xz", 212 - "sha256": "c00a2de57e3f293e0236c4aa23f2a2c4842a7a9a0f4e0a156e8c7073e15300c9", 213 - "md5": "a9129971763d386d8f95021e0821e0f1", 214 - "size": "63933124" 215 - } 216 - }, 217 - "cuda_memcheck": { 218 - "name": "CUDA Memcheck", 219 - "license": "CUDA Toolkit", 220 - "version": "11.7.91", 221 - "linux-x86_64": { 222 - "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.7.91-archive.tar.xz", 223 - "sha256": "4e8b01194aea23ec2c5e8fec8fcb12bae60594e34552d2339dc4fc695c6a7454", 224 - "md5": "5937f55b86d1b4c7a55989d2baff4a1b", 225 - "size": "139772" 226 - }, 227 - "linux-ppc64le": { 228 - "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.7.91-archive.tar.xz", 229 - "sha256": "750834023e2b233a604d6bd61e3736e3fbd9271050b84c85b8fbc83e5bdba221", 230 - "md5": "a13f6fded406078a14d46c69bf5b9fbf", 231 - "size": "147880" 232 - }, 233 - "windows-x86_64": { 234 - "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.7.91-archive.zip", 235 - "sha256": "0ec79164f5bc925ad9e1c0fd481dd5341be5c6f8c7bb366ac6a106be7f585730", 236 - "md5": "5dec2fb14dace02a1be4648b4ef9d45c", 237 - "size": "172868" 238 - } 239 - }, 240 - "cuda_nsight": { 241 - "name": "Nsight Eclipse Edition Plugin", 242 - "license": "CUDA Toolkit", 243 - "version": "11.7.91", 244 - "linux-x86_64": { 245 - "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.7.91-archive.tar.xz", 246 - "sha256": "1a5a0e4b8ee7885f80953b5547bf9c94dd4b050fbf66e213ce527d3926ce4473", 247 - "md5": "7bd236c01d795c19ed68b19da44614ea", 248 - "size": "118610820" 249 - }, 250 - "linux-ppc64le": { 251 - "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.7.91-archive.tar.xz", 252 - "sha256": "86a94c7f1f0a4746937dc77c33d3774fa8aa8fa45b48b5843a76956a8ef4642b", 253 - "md5": "8679d0658976ae91ed1ef73fb73746eb", 254 - "size": "118610828" 255 - } 256 - }, 257 - "cuda_nvcc": { 258 - "name": "CUDA NVCC", 259 - "license": "CUDA Toolkit", 260 - "version": "11.7.99", 261 - "linux-x86_64": { 262 - "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.7.99-archive.tar.xz", 263 - "sha256": "4a75e5bd6a0e0e664ec5895ba050cf9d7cda08f41db2b6b4c36fb91cfb9627bc", 264 - "md5": "9f0fad0ba21b72ef1813a8705b0e8171", 265 - "size": "37045896" 266 - }, 267 - "linux-ppc64le": { 268 - "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.7.99-archive.tar.xz", 269 - "sha256": "0cb5ca0b171bb0e513d1960fde4106457ad6a3d4f770984bfb69d736fb403e83", 270 - "md5": "62bd522c15dd86bcff7a7bb0acad50c3", 271 - "size": "34878168" 272 - }, 273 - "linux-sbsa": { 274 - "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.7.99-archive.tar.xz", 275 - "sha256": "59016452808b9b2eb83eeb05bdc0737983a1debb3812513c860869092a8152b8", 276 - "md5": "3b9b2692ef4bbf413b1aa68aa8477288", 277 - "size": "32636812" 278 - }, 279 - "windows-x86_64": { 280 - "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.7.99-archive.zip", 281 - "sha256": "55aac64b0c81b96628ad9511514c591c33a4649d15d5a579d351be5b89632276", 282 - "md5": "e897644755a92a4681c8816cb6317981", 283 - "size": "47663877" 284 - } 285 - }, 286 - "cuda_nvdisasm": { 287 - "name": "CUDA nvdisasm", 288 - "license": "CUDA Toolkit", 289 - "version": "11.7.91", 290 - "linux-x86_64": { 291 - "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.7.91-archive.tar.xz", 292 - "sha256": "da935b2d88a3e75095981143174026ca1d2a5ea43783240e7312874ae3e73217", 293 - "md5": "d573df50a5f7dc07aa9e09df81b14d98", 294 - "size": "32787620" 295 - }, 296 - "linux-ppc64le": { 297 - "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.7.91-archive.tar.xz", 298 - "sha256": "daf6a45fd71f80e697720445734a52422fec4eed07664bfa1154c1d84a2f0b71", 299 - "md5": "e967c5fd7d9a44cc8fa07d84eb1cfe5f", 300 - "size": "32792832" 301 - }, 302 - "linux-sbsa": { 303 - "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.7.91-archive.tar.xz", 304 - "sha256": "09e183b991019eb102a8592ab3f3cf64fa1969a4ec42deb96407549938ece485", 305 - "md5": "a7be5d6186b166d731f870ecbdab99ee", 306 - "size": "32731196" 307 - }, 308 - "windows-x86_64": { 309 - "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.7.91-archive.zip", 310 - "sha256": "be716596ea300a295ab06b92caa92d7a17e4dd23f7a3f9ef0f98f1f81a63d241", 311 - "md5": "189329f03aa56788ddabf00f7be6ac46", 312 - "size": "33004702" 313 - } 314 - }, 315 - "cuda_nvml_dev": { 316 - "name": "CUDA NVML Headers", 317 - "license": "CUDA Toolkit", 318 - "version": "11.7.91", 319 - "linux-x86_64": { 320 - "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.7.91-archive.tar.xz", 321 - "sha256": "b8ea7d2a5adb138a9121911dd03eaa7b7d04c96c64d2fcc585c29be2a73ddfef", 322 - "md5": "439c09ca1fecea5431f9f1684cb76118", 323 - "size": "76392" 324 - }, 325 - "linux-ppc64le": { 326 - "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.7.91-archive.tar.xz", 327 - "sha256": "a60c92d8eb6d014b4f5e961d9d64a6fee9f0b381c6238146b55210d142a501f9", 328 - "md5": "fcc7b6ae2467ffca24326b4b934d0bde", 329 - "size": "76108" 330 - }, 331 - "linux-sbsa": { 332 - "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.7.91-archive.tar.xz", 333 - "sha256": "891de12a4aa2941e95b1d3d84f57ffe38840bc3883d02b1c9ff1777b16ed07d9", 334 - "md5": "4441e23289ee0246aa026585677e4ade", 335 - "size": "76732" 336 - }, 337 - "windows-x86_64": { 338 - "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.7.91-archive.zip", 339 - "sha256": "f8a9be7526d4c201759346911145a026acafb72e664bae9ec8b9690f8ac4c56c", 340 - "md5": "81fb3e254d1da50d6335beafb0f761c5", 341 - "size": "106750" 342 - } 343 - }, 344 - "cuda_nvprof": { 345 - "name": "CUDA nvprof", 346 - "license": "CUDA Toolkit", 347 - "version": "11.7.101", 348 - "linux-x86_64": { 349 - "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.7.101-archive.tar.xz", 350 - "sha256": "028c9ae359e037fd8b3b7976304821704818d141284e8878577061dc41e19afe", 351 - "md5": "90fa02884b5cab3163f9ca94a5c3bea3", 352 - "size": "1944168" 353 - }, 354 - "linux-ppc64le": { 355 - "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.7.101-archive.tar.xz", 356 - "sha256": "be5cfe846f87968a7425cc210899b2c50dece34d79d975c235887ddac6453fcb", 357 - "md5": "41c8f4a4ad5e8780ccb2dbd160b58775", 358 - "size": "1600192" 359 - }, 360 - "linux-sbsa": { 361 - "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.7.101-archive.tar.xz", 362 - "sha256": "e910c6d39ef34317b4b6c57da4186ac88934ce6282c6392631141291821a482e", 363 - "md5": "8899dafe69b323e2acb13d46cb9d3322", 364 - "size": "16144" 365 - }, 366 - "windows-x86_64": { 367 - "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.7.101-archive.zip", 368 - "sha256": "2199a24ea32c4df25e55e4308bb5f620ec8e409ba904cb20f0fe57d081ac501a", 369 - "md5": "625bf74f6cc19181010cd66c07d15c76", 370 - "size": "1603321" 371 - } 372 - }, 373 - "cuda_nvprune": { 374 - "name": "CUDA nvprune", 375 - "license": "CUDA Toolkit", 376 - "version": "11.7.91", 377 - "linux-x86_64": { 378 - "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.7.91-archive.tar.xz", 379 - "sha256": "94a6bd85e944f89ce0192fae649ab9b213a7cea28d7bafa5f6a1d57c49148f84", 380 - "md5": "41e4d4e51f7f96cf7e1db29009db780b", 381 - "size": "55136" 382 - }, 383 - "linux-ppc64le": { 384 - "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.7.91-archive.tar.xz", 385 - "sha256": "93d9e2ba9819ca19bac6c17e96bfd9bc56524a60372ab9d57286430df1c2265e", 386 - "md5": "2fd26dccb2e78ff92dac81ee1cf23b02", 387 - "size": "55756" 388 - }, 389 - "linux-sbsa": { 390 - "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.7.91-archive.tar.xz", 391 - "sha256": "f7325009c1e73f7b4f70117073af1e698dcf81ceb07569527760606b348385fa", 392 - "md5": "1511a5b8b7bb2924e8324e93a2c16a07", 393 - "size": "47604" 394 - }, 395 - "windows-x86_64": { 396 - "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.7.91-archive.zip", 397 - "sha256": "dcff80bce25f5d3f3b53a3f08b346ff5b38e5274a0e54572f97762e56d619236", 398 - "md5": "09f6a56f13c677f6042472561529138f", 399 - "size": "144825" 400 - } 401 - }, 402 - "cuda_nvrtc": { 403 - "name": "CUDA NVRTC", 404 - "license": "CUDA Toolkit", 405 - "version": "11.7.99", 406 - "linux-x86_64": { 407 - "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.7.99-archive.tar.xz", 408 - "sha256": "cd6ed198ef77898bb3025145570d981cc7a0d2bda792e9a70822fcd274b18248", 409 - "md5": "1afd3d6203308995b731a20563ea8303", 410 - "size": "28033228" 411 - }, 412 - "linux-ppc64le": { 413 - "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.7.99-archive.tar.xz", 414 - "sha256": "a99594647a16839612f078913252809fe2cbe3ff23b9023304ddd181f5ad0362", 415 - "md5": "76d6e4a29cf3652c30154ec6b8e7780d", 416 - "size": "26189204" 417 - }, 418 - "linux-sbsa": { 419 - "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.7.99-archive.tar.xz", 420 - "sha256": "32a94a6993edc24aadeebdae7c4e8fad04a9c7214bd1f505aec16256305feb4e", 421 - "md5": "e52f252b10a8207e9d7464dc07ae55f8", 422 - "size": "26042768" 423 - }, 424 - "windows-x86_64": { 425 - "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.7.99-archive.zip", 426 - "sha256": "d4b5027eee2e20155ba317b6b62f8fc36b2baa0c23b5c7031d93fa7d5b260fd1", 427 - "md5": "340f20034bac368af3b3229fea99602d", 428 - "size": "93547997" 429 - } 430 - }, 431 - "cuda_nvtx": { 432 - "name": "CUDA NVTX", 433 - "license": "CUDA Toolkit", 434 - "version": "11.7.91", 435 - "linux-x86_64": { 436 - "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.7.91-archive.tar.xz", 437 - "sha256": "a7741ed4911a0f1d17ab8da20f4e7fdc01fdd3d911b3592fa874cede9f82fd64", 438 - "md5": "3120a53ef3be9e9074d62c5692a30d24", 439 - "size": "48152" 440 - }, 441 - "linux-ppc64le": { 442 - "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.7.91-archive.tar.xz", 443 - "sha256": "d572ad45a4e878c38454b19263666f0668222390568697ada3eda376a54ecc42", 444 - "md5": "d751517c504774e5b95829cefb12a8c9", 445 - "size": "48132" 446 - }, 447 - "linux-sbsa": { 448 - "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.7.91-archive.tar.xz", 449 - "sha256": "ab2350160efdfc1024511c94eb1ecffbee4260575a57cf2d48bdc533d942e3ef", 450 - "md5": "f0e663c07f942cbbd0de8df1163074ba", 451 - "size": "48696" 452 - }, 453 - "windows-x86_64": { 454 - "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.7.91-archive.zip", 455 - "sha256": "3918a2edeef7c2da6af036451b3768c1b9298a38776f8010f91f5366e1a3419f", 456 - "md5": "c53c9e694b4c643cc36b4cbf1b07e8cf", 457 - "size": "65690" 458 - } 459 - }, 460 - "cuda_nvvp": { 461 - "name": "CUDA NVVP", 462 - "license": "CUDA Toolkit", 463 - "version": "11.7.101", 464 - "linux-x86_64": { 465 - "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.7.101-archive.tar.xz", 466 - "sha256": "1689e5a52f683e02f7ad47eae0c182f33bf8988c2ec9b8b8fe61b4a40ab97989", 467 - "md5": "cd892070d2cfabadf2133039a0370de0", 468 - "size": "117559820" 469 - }, 470 - "linux-ppc64le": { 471 - "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.7.101-archive.tar.xz", 472 - "sha256": "81b670e1fa0e415446c6eeadc44c8f5e5d4eab7709cc280a494104ee7b636187", 473 - "md5": "7920cebfb571c798d1a1b652f9960453", 474 - "size": "117016948" 475 - }, 476 - "windows-x86_64": { 477 - "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.7.101-archive.zip", 478 - "sha256": "5fdf67691bf16a13fb3f472e7d7261f0a5112477c77e81aabd11d1ad27a5ae59", 479 - "md5": "036b87efba3ee5982cf740b632a9f0ec", 480 - "size": "120353825" 481 - } 482 - }, 483 - "cuda_sanitizer_api": { 484 - "name": "CUDA Compute Sanitizer API", 485 - "license": "CUDA Toolkit", 486 - "version": "11.7.91", 487 - "linux-x86_64": { 488 - "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.7.91-archive.tar.xz", 489 - "sha256": "232bc60afa687d75825fce271ee8d5b56f2d58528785500448b830d61795840f", 490 - "md5": "d94e9fe874ac1226fd69f2cad7245b23", 491 - "size": "8316344" 492 - }, 493 - "linux-ppc64le": { 494 - "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.7.91-archive.tar.xz", 495 - "sha256": "2aa8cacf505c2f3cea263193df80e6411cbcb8eca5a46c539821324619fad47f", 496 - "md5": "616b19f4001b6798f7f90a390912480a", 497 - "size": "7742156" 498 - }, 499 - "linux-sbsa": { 500 - "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.7.91-archive.tar.xz", 501 - "sha256": "a98ad5ae882cfcf57439668f7b4fa736d85a0726160bba5c058dfce5f79cc4a4", 502 - "md5": "a08127236f6343a3d7e84488f97bd1e7", 503 - "size": "6454908" 504 - }, 505 - "windows-x86_64": { 506 - "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.7.91-archive.zip", 507 - "sha256": "1dc3858fc0e843fff830a260f00c9f2aed61882804735bea8154e577c8da42a2", 508 - "md5": "b34204afa13f28bfdf567c2128806311", 509 - "size": "13478900" 510 - } 511 - }, 512 - "fabricmanager": { 513 - "name": "NVIDIA Fabric Manager", 514 - "license": "NVIDIA Driver", 515 - "version": "515.65.01", 516 - "linux-x86_64": { 517 - "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-515.65.01-archive.tar.xz", 518 - "sha256": "f3271a899151c762641e2beab68335ab1f52cb5beecef0f474780f8fbe804f58", 519 - "md5": "8e158a039561f3fc7cec3d61dd19c525", 520 - "size": "1470560" 521 - }, 522 - "linux-sbsa": { 523 - "relative_path": "fabricmanager/linux-sbsa/fabricmanager-linux-sbsa-515.65.01-archive.tar.xz", 524 - "sha256": "dac775eaed6bf26ffb7b8e281db7fd83f5edca5625dc86a0aca26f479263b38d", 525 - "md5": "b30674e7fb23b2c189bb71e200764248", 526 - "size": "1359224" 527 - } 528 - }, 529 - "libcublas": { 530 - "name": "CUDA cuBLAS", 531 - "license": "CUDA Toolkit", 532 - "version": "11.10.3.66", 533 - "linux-x86_64": { 534 - "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.10.3.66-archive.tar.xz", 535 - "sha256": "15c117c74bc1401dbc87cc8a9f510155818786c030fc3396f4af6bc425aef6f3", 536 - "md5": "b7ef03a0126377d8a1b3fa14b0d9c8c8", 537 - "size": "417046836" 538 - }, 539 - "linux-ppc64le": { 540 - "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.10.3.66-archive.tar.xz", 541 - "sha256": "89020ee3be5143b10915d78dfc1dbe44aef952c9a0aad44b3bb973288bcf98c7", 542 - "md5": "32b4ffb9312b7311ae46030b6007409f", 543 - "size": "417479596" 544 - }, 545 - "linux-sbsa": { 546 - "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.10.3.66-archive.tar.xz", 547 - "sha256": "3d64f899d4e88bd85ff410aa8fda0fe3c14d0e3acadba9ef550924ac8f34b52d", 548 - "md5": "c2641e424ea84665a9f67721ecb4bf34", 549 - "size": "417698300" 550 - }, 551 - "windows-x86_64": { 552 - "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.10.3.66-archive.zip", 553 - "sha256": "f6d80b92b0c4ae077d71ee83aaa5057c4e6419b80e25ef22ff03a80aad700fe0", 554 - "md5": "06edf73511fb738724264e59488f9935", 555 - "size": "307337197" 556 - } 557 - }, 558 - "libcufft": { 559 - "name": "CUDA cuFFT", 560 - "license": "CUDA Toolkit", 561 - "version": "10.7.2.91", 562 - "linux-x86_64": { 563 - "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.7.2.91-archive.tar.xz", 564 - "sha256": "4f1ed4817de6be53474a27c47097eb618a33b5a3e0ad08f5f68abc8b7312aa28", 565 - "md5": "41a6e0c3dd3d38e2a73f38d1949e032e", 566 - "size": "213585020" 567 - }, 568 - "linux-ppc64le": { 569 - "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.7.2.91-archive.tar.xz", 570 - "sha256": "1a80975288256a894a435a9bd2e842bfcb4dbfec3e52741f4808e90ab270828a", 571 - "md5": "0cbe542f6d2aa5bc2641d37cf7c7dcb8", 572 - "size": "213738992" 573 - }, 574 - "linux-sbsa": { 575 - "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.7.2.91-archive.tar.xz", 576 - "sha256": "c6147c67db716824d8b7ff61306ccbf1897e3d5e1399d37e6c5ede0334db4ce9", 577 - "md5": "2a0ff67d0f1829a1e34f167e272da10a", 578 - "size": "212515324" 579 - }, 580 - "windows-x86_64": { 581 - "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.7.2.91-archive.zip", 582 - "sha256": "88643d092d3d8ef30d2b5ca3757ea87577eaefc1268f350507a3b132abeb7f24", 583 - "md5": "7860b8f5ca73b58c7038e7c3f710e8cd", 584 - "size": "287120070" 585 - } 586 - }, 587 - "libcufile": { 588 - "name": "CUDA cuFile", 589 - "license": "CUDA Toolkit", 590 - "version": "1.3.1.18", 591 - "linux-x86_64": { 592 - "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.3.1.18-archive.tar.xz", 593 - "sha256": "782473d5b2d0ae57eeb9044a0f6dc6f205787767f7a247bdeb9e916af1db61c2", 594 - "md5": "66add7faa97bb2a7d5b1f2ac2af4bdba", 595 - "size": "46933808" 596 - } 597 - }, 598 - "libcurand": { 599 - "name": "CUDA cuRAND", 600 - "license": "CUDA Toolkit", 601 - "version": "10.2.10.91", 602 - "linux-x86_64": { 603 - "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.10.91-archive.tar.xz", 604 - "sha256": "283323c93050b3904d58417a6dd4055c156407c2df0c064ae81592e532b69a31", 605 - "md5": "26ad932ad9ee5fc4e4b4afd91f95fa29", 606 - "size": "82110404" 607 - }, 608 - "linux-ppc64le": { 609 - "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.10.91-archive.tar.xz", 610 - "sha256": "0d483258a04dcbbf845481d6bd15f061e06ba7608d54827eae026039aa9edaa4", 611 - "md5": "1b609ba95d5a668056b0474dbf715fc8", 612 - "size": "82156300" 613 - }, 614 - "linux-sbsa": { 615 - "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.10.91-archive.tar.xz", 616 - "sha256": "ce68130a726152a7f68a0cec85773e4074a2f2049e16ca41e462fde12affda94", 617 - "md5": "3c1fc54570aa317d6ac15edf6799fefa", 618 - "size": "82105144" 619 - }, 620 - "windows-x86_64": { 621 - "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.10.91-archive.zip", 622 - "sha256": "90e043d540765f410fa8d3d569e95b8eac15940037cd1159335f99d4caab484f", 623 - "md5": "8be38680d09aafdf3c7c06d630c7aaf0", 624 - "size": "53656549" 625 - } 626 - }, 627 - "libcusolver": { 628 - "name": "CUDA cuSOLVER", 629 - "license": "CUDA Toolkit", 630 - "version": "11.4.0.1", 631 - "linux-x86_64": { 632 - "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.4.0.1-archive.tar.xz", 633 - "sha256": "9f56bfdfeccd63f4cde99bc4a573d5ab45e2339cf6a1b2a0fc7ff83ff9775b3d", 634 - "md5": "b9eea1b15fd5ff72286ff31751aa3d9e", 635 - "size": "75670492" 636 - }, 637 - "linux-ppc64le": { 638 - "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.4.0.1-archive.tar.xz", 639 - "sha256": "45a7645ad81a8874c192b816b227730aeb771443f54a34fa35e3496041ddcc09", 640 - "md5": "0dfc2d853f84f7ce7a44a8f87e60d367", 641 - "size": "75649948" 642 - }, 643 - "linux-sbsa": { 644 - "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.4.0.1-archive.tar.xz", 645 - "sha256": "eb9c08d184226c616a4ff041cec178b29480f8afe034f7537c0d07b6afe84588", 646 - "md5": "7f0af50206ce081a67b05eadf607873a", 647 - "size": "74862860" 648 - }, 649 - "windows-x86_64": { 650 - "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.4.0.1-archive.zip", 651 - "sha256": "bfce43d0437ae10a7250c9f173e04e048fc46f9e5c9ed2c2bd4db4e661c77ba1", 652 - "md5": "e677373b0ba75e2aec8df60868fb8363", 653 - "size": "95990827" 654 - } 655 - }, 656 - "libcusparse": { 657 - "name": "CUDA cuSPARSE", 658 - "license": "CUDA Toolkit", 659 - "version": "11.7.4.91", 660 - "linux-x86_64": { 661 - "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.4.91-archive.tar.xz", 662 - "sha256": "16841f9d4350ca21b6b362d4265983a58e675d64a14f168687b1b68995bec32e", 663 - "md5": "a7e7936e601b0645fc086e71e1e6f6f6", 664 - "size": "203663528" 665 - }, 666 - "linux-ppc64le": { 667 - "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.4.91-archive.tar.xz", 668 - "sha256": "45b65fa9e864d2df5d0d8fd36e5fad28cb3d5793689ea214b310086d034ad4a8", 669 - "md5": "3a6780fb8a79dce74a310c14cfd31a1c", 670 - "size": "203731380" 671 - }, 672 - "linux-sbsa": { 673 - "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.4.91-archive.tar.xz", 674 - "sha256": "b7f1ba9c18f87db594847b318fa73b5c76945777b5c03a507434bfa6aba2f2a2", 675 - "md5": "aa027c7f4b72d94be7f86fa243ac54ef", 676 - "size": "203358196" 677 - }, 678 - "windows-x86_64": { 679 - "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.4.91-archive.zip", 680 - "sha256": "2827643399b92b87af858bf4b004b4a664bc7e838a18e2143258b93c019487b0", 681 - "md5": "21c85acb7ffa3094b81eaee72ec3af5c", 682 - "size": "170688099" 683 - } 684 - }, 685 - "libnpp": { 686 - "name": "CUDA NPP", 687 - "license": "CUDA Toolkit", 688 - "version": "11.7.4.75", 689 - "linux-x86_64": { 690 - "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.7.4.75-archive.tar.xz", 691 - "sha256": "d90a30dd7e379d55cbc3b893e23c3bdf08b07293bdd2bd6957c4fc1e2ea998ef", 692 - "md5": "49abdcebbefb9ab8ad8b6dac450c7b20", 693 - "size": "182469720" 694 - }, 695 - "linux-ppc64le": { 696 - "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.7.4.75-archive.tar.xz", 697 - "sha256": "fb822e3c04e0fa1ff84dd236c9e9f5d84658c5b370d8d3ae235a241cc8445183", 698 - "md5": "a320af153a4fb828b51552ca180bc866", 699 - "size": "182956844" 700 - }, 701 - "linux-sbsa": { 702 - "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.7.4.75-archive.tar.xz", 703 - "sha256": "29499fe94220b91408487df21dc13a7c638482438e631df13cd5f1b28b68c48a", 704 - "md5": "38989288b63a68b93d4fc414dbe3266a", 705 - "size": "181639308" 706 - }, 707 - "windows-x86_64": { 708 - "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.7.4.75-archive.zip", 709 - "sha256": "dca9b5ee0021802f02a164f3ea6bd44e552b84bbe1896bebb21e625b811c7006", 710 - "md5": "e61b5f9a59be9fe37141168726e3151e", 711 - "size": "137990727" 712 - } 713 - }, 714 - "libnvidia_nscq": { 715 - "name": "NVIDIA NSCQ API", 716 - "license": "NVIDIA Driver", 717 - "version": "515.65.01", 718 - "linux-x86_64": { 719 - "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-515.65.01-archive.tar.xz", 720 - "sha256": "588b0a5ce467992ba926ada4d36ccf6741c3cfcc3fa8f03c6f68290a3f2c2a3b", 721 - "md5": "bd1d2193708b89158a5a40711cf60bcd", 722 - "size": "334740" 723 - }, 724 - "linux-sbsa": { 725 - "relative_path": "libnvidia_nscq/linux-sbsa/libnvidia_nscq-linux-sbsa-515.65.01-archive.tar.xz", 726 - "sha256": "fa37d0c15d79fe3ad1280f5d5946ad3c849592d89627339d1ecd90e4baeb73a1", 727 - "md5": "44c788de578818dfcedb507ad76f3d65", 728 - "size": "303936" 729 - } 730 - }, 731 - "libnvjpeg": { 732 - "name": "CUDA nvJPEG", 733 - "license": "CUDA Toolkit", 734 - "version": "11.8.0.2", 735 - "linux-x86_64": { 736 - "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.8.0.2-archive.tar.xz", 737 - "sha256": "ae8877a59d8badf6ed6e61b0b6690dbe516997386061557f5c33ba49de6e7ac9", 738 - "md5": "a743a968906c4300ab3dbbcef5f13182", 739 - "size": "1956104" 740 - }, 741 - "linux-ppc64le": { 742 - "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.8.0.2-archive.tar.xz", 743 - "sha256": "ce1862c4db6726531d7b778b0911ac77b76d2cd4253295d5d6984b0f2bcc0adf", 744 - "md5": "89eb5043e361f875872e4b5bf07b05b0", 745 - "size": "1972884" 746 - }, 747 - "linux-sbsa": { 748 - "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.8.0.2-archive.tar.xz", 749 - "sha256": "d157fb48056c896e0474f5e07fd6f51580d27501844f8218135e233de3b927e8", 750 - "md5": "43f15a462121e538acc36ac9cc68603c", 751 - "size": "1763644" 752 - }, 753 - "windows-x86_64": { 754 - "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.8.0.2-archive.zip", 755 - "sha256": "3e3d88d6dc9d0f01d9c9261b9c055f3a93ddfd65bb8609a92bd57ea9bd9fe6f2", 756 - "md5": "56463f5e7dbf2ecfb991a7f1a96553b5", 757 - "size": "1858909" 758 - } 759 - }, 760 - "nsight_compute": { 761 - "name": "Nsight Compute", 762 - "license": "NVIDIA SLA", 763 - "version": "2022.2.1.3", 764 - "linux-x86_64": { 765 - "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.2.1.3-archive.tar.xz", 766 - "sha256": "ba3c1ee8c6f7e3fae993a83678df6e7c6ff12f2d9ac0ab1b0f056405f3e0490a", 767 - "md5": "fb9a27ef58aafc5d7aae9c54e364e636", 768 - "size": "420206916" 769 - }, 770 - "linux-ppc64le": { 771 - "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.2.1.3-archive.tar.xz", 772 - "sha256": "cbfaf3e608d66f6f2b087b6cca4f9d2a63bf41be0997fafe30213c9feda76e22", 773 - "md5": "68f714d5d9a82177e7d7b0b9d06e2b96", 774 - "size": "126488268" 775 - }, 776 - "linux-sbsa": { 777 - "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.2.1.3-archive.tar.xz", 778 - "sha256": "2dbd112b3d89ed60b78f91912c41672165df9e8dac47e96de4e9416f8364d39f", 779 - "md5": "495a7b1b2bcef47ff37ecee1e01fdf22", 780 - "size": "245773972" 781 - }, 782 - "windows-x86_64": { 783 - "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.2.1.3-archive.zip", 784 - "sha256": "6b3c11cf07100ad0f4eac843aad877391b3ce4f24808a2a2efcba93da704d80b", 785 - "md5": "63ffe69b1afc698d95017ec0e0edeca2", 786 - "size": "353604503" 787 - } 788 - }, 789 - "nsight_nvtx": { 790 - "name": "Nsight NVTX", 791 - "license": "CUDA Toolkit", 792 - "version": "1.21018621", 793 - "windows-x86_64": { 794 - "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip", 795 - "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1", 796 - "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80", 797 - "size": "315692" 798 - } 799 - }, 800 - "nsight_systems": { 801 - "name": "Nsight Systems", 802 - "license": "NVIDIA SLA", 803 - "version": "2022.1.3.3", 804 - "linux-x86_64": { 805 - "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2022.1.3.3-archive.tar.xz", 806 - "sha256": "bd95553d573f117be2e3b2bda6e79d14dbb038b136c12c6e5467bbd9a891681d", 807 - "md5": "40d12d33aa2d496817d959a9551418aa", 808 - "size": "166785296" 809 - }, 810 - "linux-ppc64le": { 811 - "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2022.1.3.3-archive.tar.xz", 812 - "sha256": "4c228bfbd38b80612afeb65a406cba829d2b2e2352ea4a810cd6a386d6190151", 813 - "md5": "0d5da67cb5393a0e961509cd7dab98f1", 814 - "size": "49700384" 815 - }, 816 - "linux-sbsa": { 817 - "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2022.1.3.3-archive.tar.xz", 818 - "sha256": "9025f56b9fe70288ee3f2d30477c9cfbe8c17a304b31f7f22caf7f78153d8d23", 819 - "md5": "3559eeb8416d9a984012d2b397560740", 820 - "size": "50415564" 821 - }, 822 - "windows-x86_64": { 823 - "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2022.1.3.3-archive.zip", 824 - "sha256": "294738ba0aa0621395740a6d039a490aa0bf5fceec449b1fd4135a97b81eda0f", 825 - "md5": "91e316744714c168c1a75804c9a198c9", 826 - "size": "315748009" 827 - } 828 - }, 829 - "nsight_vse": { 830 - "name": "Nsight Visual Studio Edition (VSE)", 831 - "license": "NVIDIA SLA", 832 - "version": "2022.2.1.22136", 833 - "windows-x86_64": { 834 - "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.2.1.22136-archive.zip", 835 - "sha256": "b2afd0efaf6f1fab5a1aca71c536e34c29260f69d5c5d5c3aec41624de0be671", 836 - "md5": "ab19e7dbec03a5f5a3fd42ca839c57ce", 837 - "size": "459007868" 838 - } 839 - }, 840 - "nvidia_driver": { 841 - "name": "NVIDIA Linux Driver", 842 - "license": "NVIDIA Driver", 843 - "version": "515.65.01", 844 - "linux-x86_64": { 845 - "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-515.65.01-archive.tar.xz", 846 - "sha256": "e7845a159bb870df2a7a74505611dd3db9501707c0e74668d7f21e32b8613282", 847 - "md5": "38226ca31111cea5c75384ae791b8b81", 848 - "size": "366714956" 849 - }, 850 - "linux-ppc64le": { 851 - "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-515.65.01-archive.tar.xz", 852 - "sha256": "a235b54c8349ac72474d9a1123b5c7c34cf7c9c6968196365282dc555120c3c9", 853 - "md5": "3dbd9131e366f33b29c6e7798eb89fb2", 854 - "size": "76861468" 855 - }, 856 - "linux-sbsa": { 857 - "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-515.65.01-archive.tar.xz", 858 - "sha256": "db1c9b31783b8af2929887f103f40db53463a83535c7b17c8eeb6adefa255ce0", 859 - "md5": "8882f6df4d644fe76b83eab7d83a0ae5", 860 - "size": "226280968" 861 - } 862 - }, 863 - "nvidia_fs": { 864 - "name": "NVIDIA filesystem", 865 - "license": "CUDA Toolkit", 866 - "version": "2.12.8", 867 - "linux-x86_64": { 868 - "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.12.8-archive.tar.xz", 869 - "sha256": "71830b69b8a31fe46bf07329c0986b61cf557c5d6ac51c1a9cbc7017dfa3f767", 870 - "md5": "ee40e41ec4349fc6e408ff15fd42a800", 871 - "size": "67356" 872 - } 873 - }, 874 - "visual_studio_integration": { 875 - "name": "CUDA Visual Studio Integration", 876 - "license": "CUDA Toolkit", 877 - "version": "11.7.91", 878 - "windows-x86_64": { 879 - "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.7.91-archive.zip", 880 - "sha256": "46f31c50d34869b79d85e030016b09c0286428374f07688f8ef1bb133ab41391", 881 - "md5": "3d6a962dc19be4ee995a51621a88e77e", 882 - "size": "517028" 883 - } 884 - } 885 - }
+17 -28
pkgs/development/cuda-modules/cudatoolkit/default.nix
··· 1 1 { 2 2 cudaMajorMinorVersion, 3 + cudaAtLeast, 4 + cudaOlder, 3 5 runPatches ? [ ], 4 6 autoPatchelfHook, 5 7 autoAddDriverRunpath, ··· 41 43 wayland, 42 44 xorg, 43 45 zlib, 44 - libglut, 45 - libGLU, 46 - libsForQt5, 47 46 libtiff, 48 47 qt6Packages, 49 48 qt6, ··· 59 58 release = releases.${cudaMajorMinorVersion}; 60 59 in 61 60 62 - backendStdenv.mkDerivation rec { 61 + backendStdenv.mkDerivation { 63 62 pname = "cudatoolkit"; 64 63 inherit (release) version; 65 64 inherit runPatches; ··· 83 82 autoPatchelfHook 84 83 autoAddDriverRunpath 85 84 markForCudatoolkitRootHook 86 - ] 87 - ++ lib.optionals (lib.versionAtLeast version "11.8") [ qt6Packages.wrapQtAppsHook ]; 85 + qt6Packages.wrapQtAppsHook 86 + ]; 88 87 propagatedBuildInputs = [ setupCudaHook ]; 89 88 buildInputs = [ 90 89 # To get $GDK_PIXBUF_MODULE_FILE via setup-hook ··· 123 122 alsa-lib 124 123 wayland 125 124 libglvnd 126 - ] 127 - ++ lib.optionals (lib.versionAtLeast version "11.8") [ 128 125 (lib.getLib libtiff) 129 126 qt6Packages.qtwayland 130 127 rdma-core ··· 132 129 xorg.libxshmfence 133 130 xorg.libxkbfile 134 131 ] 135 - ++ (lib.optionals (lib.versionAtLeast version "12") ( 132 + ++ (lib.optionals (cudaAtLeast "12") ( 136 133 map lib.getLib ([ 137 134 # Used by `/target-linux-x64/CollectX/clx` and `/target-linux-x64/CollectX/libclx_api.so` for: 138 135 # - `libcurl.so.4` ··· 152 149 qtwebengine 153 150 ]) 154 151 )) 155 - ++ lib.optionals (lib.versionAtLeast version "12.6") [ 152 + ++ lib.optionals (cudaAtLeast "12.6") [ 156 153 # libcrypt.so.1 157 154 libxcrypt-legacy 158 155 ncurses6 159 156 python310 160 157 python311 161 158 ] 162 - ++ lib.optionals (lib.versionAtLeast version "12.9") [ 159 + ++ lib.optionals (cudaAtLeast "12.9") [ 163 160 # Replace once https://github.com/NixOS/nixpkgs/pull/421740 is merged. 164 161 (libxml2.overrideAttrs rec { 165 162 version = "2.13.8"; ··· 238 235 mv pkg/builds/nsight_systems/target-linux-x64 $out/target-linux-x64 239 236 mv pkg/builds/nsight_systems/host-linux-x64 $out/host-linux-x64 240 237 rm $out/host-linux-x64/libstdc++.so* 241 - ${lib.optionalString (lib.versionAtLeast version "11.8" && lib.versionOlder version "12") 238 + ${lib.optionalString (cudaAtLeast "11.8" && cudaOlder "12") 242 239 # error: auto-patchelf could not satisfy dependency libtiff.so.5 wanted by /nix/store/.......-cudatoolkit-12.0.1/host-linux-x64/Plugins/imageformats/libqtiff.so 243 240 # we only ship libtiff.so.6, so let's use qt plugins built by Nix. 244 241 # TODO: don't copy, come up with a symlink-based "merge" ··· 246 243 rsync ${lib.getLib qt6Packages.qtimageformats}/lib/qt-6/plugins/ $out/host-linux-x64/Plugins/ -aP 247 244 '' 248 245 } 249 - ${lib.optionalString (lib.versionAtLeast version "12") 246 + ${lib.optionalString (cudaAtLeast "12") 250 247 # Use Qt plugins built by Nix. 251 248 '' 252 249 for qtlib in $out/host-linux-x64/Plugins/*/libq*.so; do ··· 270 267 271 268 rm -f $out/tools/CUDA_Occupancy_Calculator.xls # FIXME: why? 272 269 273 - ${lib.optionalString (lib.versionAtLeast version "12.0") '' 270 + ${lib.optionalString (cudaAtLeast "12.0") '' 274 271 rm $out/host-linux-x64/libQt6* 275 272 ''} 276 273 ··· 308 305 --prefix LD_LIBRARY_PATH : $out/lib 309 306 '' 310 307 # 11.8 and 12.9 include a broken symlink, include/include, pointing to targets/x86_64-linux/include 311 - + 312 - lib.optionalString 313 - (lib.versions.majorMinor version == "11.8" || lib.versions.majorMinor version == "12.9") 314 - '' 315 - rm $out/include/include 316 - '' 308 + + lib.optionalString (cudaMajorMinorVersion == "11.8" || cudaMajorMinorVersion == "12.9") '' 309 + rm $out/include/include 310 + '' 317 311 # 12.9 has another broken symlink, lib64/lib64, pointing to lib/targets/x86_64-linux/lib 318 - + lib.optionalString (lib.versions.majorMinor version == "12.9") '' 312 + + lib.optionalString (cudaMajorMinorVersion == "12.9") '' 319 313 rm $out/lib64/lib64 320 314 '' 321 315 # Python 3.8 and 3.9 are not in nixpkgs anymore, delete Python 3.{8,9} cuda-gdb support 322 316 # to avoid autopatchelf failing to find libpython3.{8,9}.so. 323 - + lib.optionalString (lib.versionAtLeast version "12.6") '' 317 + + lib.optionalString (cudaAtLeast "12.6") '' 324 318 find $out -name '*python3.8*' -delete 325 319 find $out -name '*python3.9*' -delete 326 320 '' ··· 333 327 wrapProgram "$out/bin/$b" \ 334 328 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" 335 329 done 336 - ${lib.optionalString (lib.versionAtLeast version "12") 330 + ${lib.optionalString (cudaAtLeast "12") 337 331 # Check we don't have any lurking vendored qt libraries that weren't 338 332 # replaced during installPhase 339 333 '' ··· 368 362 done 369 363 popd 370 364 ''; 371 - passthru = { 372 - inherit (backendStdenv) cc; 373 - majorMinorVersion = lib.versions.majorMinor version; 374 - majorVersion = lib.versions.majorMinor version; 375 - }; 376 365 377 366 meta = with lib; { 378 367 description = "Deprecated runfile-based CUDAToolkit installation (a compiler for NVIDIA GPUs, math libraries, and tools)";
+15 -21
pkgs/development/cuda-modules/cudatoolkit/redist-wrapper.nix
··· 2 2 lib, 3 3 symlinkJoin, 4 4 backendStdenv, 5 - cudaOlder, 6 - cudatoolkit-legacy-runfile, 7 5 cudaMajorMinorVersion, 8 6 cuda_cccl ? null, 9 7 cuda_cudart ? null, ··· 61 59 # This assumes we put `cudatoolkit` in `buildInputs` instead of `nativeBuildInputs`: 62 60 allPackages = (map (p: p.__spliced.buildHost or p) hostPackages) ++ targetPackages; 63 61 in 62 + symlinkJoin rec { 63 + name = "cuda-merged-${cudaMajorMinorVersion}"; 64 + version = cudaMajorMinorVersion; 64 65 65 - if cudaOlder "11.4" then 66 - cudatoolkit-legacy-runfile 67 - else 68 - symlinkJoin rec { 69 - name = "cuda-merged-${cudaMajorMinorVersion}"; 70 - version = cudaMajorMinorVersion; 66 + paths = builtins.concatMap getAllOutputs allPackages; 71 67 72 - paths = builtins.concatMap getAllOutputs allPackages; 73 - 74 - passthru = { 75 - cc = lib.warn "cudaPackages.cudatoolkit is deprecated, refer to the manual and use splayed packages instead" backendStdenv.cc; 76 - lib = symlinkJoin { 77 - inherit name; 78 - paths = map (p: lib.getLib p) allPackages; 79 - }; 68 + passthru = { 69 + cc = lib.warn "cudaPackages.cudatoolkit is deprecated, refer to the manual and use splayed packages instead" backendStdenv.cc; 70 + lib = symlinkJoin { 71 + inherit name; 72 + paths = map (p: lib.getLib p) allPackages; 80 73 }; 74 + }; 81 75 82 - meta = with lib; { 83 - description = "Wrapper substituting the deprecated runfile-based CUDA installation"; 84 - license = licenses.nvidiaCuda; 85 - }; 86 - } 76 + meta = with lib; { 77 + description = "Wrapper substituting the deprecated runfile-based CUDA installation"; 78 + license = licenses.nvidiaCuda; 79 + }; 80 + }
-48
pkgs/development/cuda-modules/cudatoolkit/releases.nix
··· 10 10 # } 11 11 # Releases = AttrSet CudaVersion Release 12 12 { 13 - "11.0" = { 14 - version = "11.0.3"; 15 - url = "https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_450.51.06_linux.run"; 16 - sha256 = "1h4c69nfrgm09jzv8xjnjcvpq8n4gnlii17v3wzqry5d13jc8ydh"; 17 - }; 18 - 19 - "11.1" = { 20 - version = "11.1.1"; 21 - url = "https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_455.32.00_linux.run"; 22 - sha256 = "13yxv2fgvdnqqbwh1zb80x4xhyfkbajfkwyfpdg9493010kngbiy"; 23 - }; 24 - 25 - "11.2" = { 26 - version = "11.2.1"; 27 - url = "https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda_11.2.1_460.32.03_linux.run"; 28 - sha256 = "sha256-HamMuJfMX1inRFpKZspPaSaGdwbLOvWKZpzc2Nw9F8g="; 29 - }; 30 - 31 - "11.3" = { 32 - version = "11.3.1"; 33 - url = "https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.19.01_linux.run"; 34 - sha256 = "0d19pwcqin76scbw1s5kgj8n0z1p4v1hyfldqmamilyfxycfm4xd"; 35 - }; 36 - 37 - "11.4" = { 38 - version = "11.4.2"; 39 - url = "https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run"; 40 - sha256 = "sha256-u9h8oOkT+DdFSnljZ0c1E83e9VUILk2G7Zo4ZZzIHwo="; 41 - }; 42 - 43 - "11.5" = { 44 - version = "11.5.0"; 45 - url = "https://developer.download.nvidia.com/compute/cuda/11.5.0/local_installers/cuda_11.5.0_495.29.05_linux.run"; 46 - sha256 = "sha256-rgoWk9lJfPPYHmlIlD43lGNpANtxyY1Y7v2sr38aHkw="; 47 - }; 48 - 49 - "11.6" = { 50 - version = "11.6.1"; 51 - url = "https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run"; 52 - sha256 = "sha256-qyGa/OALdCABEyaYZvv/derQN7z8I1UagzjCaEyYTX4="; 53 - }; 54 - 55 - "11.7" = { 56 - version = "11.7.0"; 57 - url = "https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run"; 58 - sha256 = "sha256-CH/fy7ofeVQ7H3jkOo39rF9tskLQQt3oIOFtwYWJLyY="; 59 - }; 60 - 61 13 "11.8" = { 62 14 version = "11.8.0"; 63 15 url = "https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run";
-63
pkgs/development/cuda-modules/cudnn/releases.nix
··· 41 41 # server-grade arm 42 42 linux-sbsa = [ 43 43 { 44 - version = "8.4.1.50"; 45 - minCudaVersion = "11.0"; 46 - maxCudaVersion = "11.7"; 47 - url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-8.4.1.50_cuda11.6-archive.tar.xz"; 48 - hash = "sha256-CxufrFt4l04v2qp0hD2xj2Ns6PPZmdYv8qYVuZePw2A="; 49 - } 50 - { 51 - version = "8.5.0.96"; 52 - minCudaVersion = "11.0"; 53 - maxCudaVersion = "11.7"; 54 - url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-sbsa/cudnn-linux-sbsa-8.5.0.96_cuda11-archive.tar.xz"; 55 - hash = "sha256-hngKu+zUY05zY/rR0ACuI7eQWl+Dg73b9zMsaTR5Hd4="; 56 - } 57 - { 58 44 version = "8.6.0.163"; 59 45 minCudaVersion = "11.0"; 60 46 maxCudaVersion = "11.8"; ··· 149 135 ]; 150 136 # x86_64 151 137 linux-x86_64 = [ 152 - { 153 - version = "8.0.5.39"; 154 - minCudaVersion = "11.0"; 155 - maxCudaVersion = "11.0"; 156 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v8.0.5/cudnn-11.0-linux-x64-v8.0.5.39.tgz"; 157 - hash = "sha256-ThbueJXetKixwZS4ErpJWG730mkCBRQB03F1EYmKm3M="; 158 - } 159 - { 160 - version = "8.0.5.39"; 161 - minCudaVersion = "11.1"; 162 - maxCudaVersion = "11.1"; 163 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v8.0.5/cudnn-11.1-linux-x64-v8.0.5.39.tgz"; 164 - hash = "sha256-HQRr+nk5navMb2yxUHkYdUQ5RC6gyp4Pvs3URvmwDM4="; 165 - } 166 - { 167 - version = "8.1.1.33"; 168 - minCudaVersion = "11.0"; 169 - maxCudaVersion = "11.2"; 170 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v8.1.1/cudnn-11.2-linux-x64-v8.1.1.33.tgz"; 171 - hash = "sha256-mKh4TpKGLyABjSDCgbMNSgzZUfk2lPZDPM9K6cUCumo="; 172 - } 173 - { 174 - version = "8.2.4.15"; 175 - minCudaVersion = "11.0"; 176 - maxCudaVersion = "11.4"; 177 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.4/cudnn-11.4-linux-x64-v8.2.4.15.tgz"; 178 - hash = "sha256-Dl0t+JC5ln76ZhnaQhMQ2XMjVlp58FoajLm3Fluq0Nc="; 179 - } 180 - { 181 - version = "8.3.3.40"; 182 - minCudaVersion = "11.0"; 183 - maxCudaVersion = "11.6"; 184 - url = "https://developer.download.nvidia.com/compute/redist/cudnn/v8.3.3/local_installers/11.5/cudnn-linux-x86_64-8.3.3.40_cuda11.5-archive.tar.xz"; 185 - hash = "sha256-6r6Wx1zwPqT1N5iU2RTx+K4UzqsSGYnoSwg22Sf7dzE="; 186 - } 187 - { 188 - version = "8.4.1.50"; 189 - minCudaVersion = "11.0"; 190 - maxCudaVersion = "11.7"; 191 - url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-8.4.1.50_cuda11.6-archive.tar.xz"; 192 - hash = "sha256-7JbSN22B/KQr3T1MPXBambKaBlurV/kgVhx2PinGfQE="; 193 - } 194 - { 195 - version = "8.5.0.96"; 196 - minCudaVersion = "11.0"; 197 - maxCudaVersion = "11.7"; 198 - url = "https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-8.5.0.96_cuda11-archive.tar.xz"; 199 - hash = "sha256-VFSm/ZTwCHKMqumtrZk8ToXvNjAuJrzkO+p9RYpee20="; 200 - } 201 138 { 202 139 version = "8.6.0.163"; 203 140 minCudaVersion = "11.0";
+1 -1
pkgs/development/cuda-modules/modules/generic/manifests/feature/manifest.nix
··· 5 5 in 6 6 options.mkOption { 7 7 description = "Feature manifest is an attribute set which includes a mapping from package name to release"; 8 - example = trivial.importJSON ../../../../cuda/manifests/feature_11.5.2.json; 8 + example = trivial.importJSON ../../../../cuda/manifests/feature_11.8.0.json; 9 9 type = types.attrsOf Release.type; 10 10 }
+1 -1
pkgs/development/cuda-modules/modules/generic/manifests/redistrib/manifest.nix
··· 5 5 in 6 6 options.mkOption { 7 7 description = "Redistributable manifest is an attribute set which includes a mapping from package name to release"; 8 - example = trivial.importJSON ../../../../cuda/manifests/redistrib_11.5.2.json; 8 + example = trivial.importJSON ../../../../cuda/manifests/redistrib_11.8.0.json; 9 9 type = types.submodule { 10 10 # Allow any attribute name as these will be the package names 11 11 freeformType = types.attrsOf Release.type;
+1 -1
pkgs/development/cuda-modules/packages/autoAddCudaCompatRunpath/package.nix
··· 5 5 # executed last. 6 6 { 7 7 autoFixElfFiles, 8 - cuda_compat ? null, 8 + cuda_compat, 9 9 makeSetupHook, 10 10 }: 11 11 makeSetupHook {
+3 -10
pkgs/development/cuda-modules/packages/nccl-tests.nix
··· 18 18 cuda_cudart 19 19 cuda_nvcc 20 20 cudaAtLeast 21 - cudaOlder 22 - cudatoolkit 23 21 nccl 24 22 ; 25 23 in ··· 44 42 45 43 nativeBuildInputs = [ 46 44 which 47 - ] 48 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 49 - ++ lib.optionals (cudaAtLeast "11.4") [ cuda_nvcc ]; 45 + cuda_nvcc 46 + ]; 50 47 51 48 buildInputs = [ 52 49 nccl 53 - ] 54 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 55 - ++ lib.optionals (cudaAtLeast "11.4") [ 56 50 cuda_nvcc # crt/host_config.h 57 51 cuda_cudart 58 52 ] ··· 63 57 64 58 makeFlags = [ 65 59 "NCCL_HOME=${nccl}" 60 + "CUDA_HOME=${cuda_nvcc}" 66 61 ] 67 - ++ lib.optionals (cudaOlder "11.4") [ "CUDA_HOME=${cudatoolkit}" ] 68 - ++ lib.optionals (cudaAtLeast "11.4") [ "CUDA_HOME=${cuda_nvcc}" ] 69 62 ++ lib.optionals mpiSupport [ "MPI=1" ]; 70 63 71 64 enableParallelBuilding = true;
+11 -23
pkgs/development/cuda-modules/packages/nccl.nix
··· 18 18 cuda_cudart 19 19 cuda_nvcc 20 20 cudaAtLeast 21 - cudaOlder 22 - cudatoolkit 23 21 flags 24 22 ; 25 23 # versions 2.26+ with CUDA 11.x error with ··· 54 52 which 55 53 autoAddDriverRunpath 56 54 python3 57 - ] 58 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 59 - ++ lib.optionals (cudaAtLeast "11.4") [ cuda_nvcc ]; 55 + cuda_nvcc 56 + ]; 60 57 61 - buildInputs = 62 - lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 63 - ++ lib.optionals (cudaAtLeast "11.4") [ 64 - cuda_nvcc # crt/host_config.h 65 - cuda_cudart 66 - ] 67 - # NOTE: CUDA versions in Nixpkgs only use a major and minor version. When we do comparisons 68 - # against other version, like below, it's important that we use the same format. Otherwise, 69 - # we'll get incorrect results. 70 - # For example, lib.versionAtLeast "12.0" "12.0.0" == false. 71 - ++ lib.optionals (cudaAtLeast "12.0") [ cuda_cccl ]; 58 + buildInputs = [ 59 + cuda_nvcc # crt/host_config.h 60 + cuda_cudart 61 + ] 62 + # NOTE: CUDA versions in Nixpkgs only use a major and minor version. When we do comparisons 63 + # against other version, like below, it's important that we use the same format. Otherwise, 64 + # we'll get incorrect results. 65 + # For example, lib.versionAtLeast "12.0" "12.0.0" == false. 66 + ++ lib.optionals (cudaAtLeast "12.0") [ cuda_cccl ]; 72 67 73 68 env.NIX_CFLAGS_COMPILE = toString [ "-Wno-unused-function" ]; 74 69 ··· 80 75 makeFlags = [ 81 76 "PREFIX=$(out)" 82 77 "NVCC_GENCODE=${flags.gencodeString}" 83 - ] 84 - ++ lib.optionals (cudaOlder "11.4") [ 85 - "CUDA_HOME=${cudatoolkit}" 86 - "CUDA_LIB=${lib.getLib cudatoolkit}/lib" 87 - "CUDA_INC=${lib.getDev cudatoolkit}/include" 88 - ] 89 - ++ lib.optionals (cudaAtLeast "11.4") [ 90 78 "CUDA_HOME=${cuda_nvcc}" 91 79 "CUDA_LIB=${lib.getLib cuda_cudart}/lib" 92 80 "CUDA_INC=${lib.getDev cuda_cudart}/include"
+10 -16
pkgs/development/cuda-modules/packages/saxpy/package.nix
··· 12 12 cuda_cudart 13 13 cuda_nvcc 14 14 cudaAtLeast 15 - cudaOlder 16 - cudatoolkit 17 15 flags 18 16 libcublas 19 17 ; ··· 31 29 nativeBuildInputs = [ 32 30 cmake 33 31 autoAddDriverRunpath 34 - ] 35 - ++ lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 36 - ++ lib.optionals (cudaAtLeast "11.4") [ cuda_nvcc ]; 32 + cuda_nvcc 33 + ]; 37 34 38 - buildInputs = 39 - lib.optionals (cudaOlder "11.4") [ cudatoolkit ] 40 - ++ lib.optionals (cudaAtLeast "11.4") [ 41 - (getDev libcublas) 42 - (getLib libcublas) 43 - (getOutput "static" libcublas) 44 - cuda_cudart 45 - ] 46 - ++ lib.optionals (cudaAtLeast "12.0") [ cuda_cccl ]; 35 + buildInputs = [ 36 + (getDev libcublas) 37 + (getLib libcublas) 38 + (getOutput "static" libcublas) 39 + cuda_cudart 40 + ] 41 + ++ lib.optionals (cudaAtLeast "12.0") [ cuda_cccl ]; 47 42 48 43 cmakeFlags = [ 49 44 (lib.cmakeBool "CMAKE_VERBOSE_MAKEFILE" true) ··· 58 53 ''; 59 54 }); 60 55 61 - meta = rec { 56 + meta = { 62 57 description = "Simple (Single-precision AX Plus Y) FindCUDAToolkit.cmake example for testing cross-compilation"; 63 58 license = lib.licenses.mit; 64 59 teams = [ lib.teams.cuda ]; 65 60 mainProgram = "saxpy"; 66 61 platforms = lib.platforms.unix; 67 - badPlatforms = lib.optionals (flags.isJetsonBuild && cudaOlder "11.4") platforms; 68 62 }; 69 63 }
-42
pkgs/development/cuda-modules/tensorrt/releases.nix
··· 11 11 # server-grade arm 12 12 linux-sbsa = [ 13 13 { 14 - version = "8.2.5.1"; 15 - minCudaVersion = "11.4"; 16 - maxCudaVersion = "11.4"; 17 - cudnnVersion = "8.2"; 18 - filename = "TensorRT-8.2.5.1.Ubuntu-20.04.aarch64-gnu.cuda-11.4.cudnn8.2.tar.gz"; 19 - hash = "sha256-oWfQ3lq2aoMPv65THeotnMilTzP+QWqKeToLU8eO+qo="; 20 - } 21 - { 22 - version = "8.4.3.1"; 23 - minCudaVersion = "11.6"; 24 - maxCudaVersion = "11.6"; 25 - cudnnVersion = "8.4"; 26 - filename = "TensorRT-8.4.3.1.Ubuntu-20.04.aarch64-gnu.cuda-11.6.cudnn8.4.tar.gz"; 27 - hash = "sha256-9tLlrB8cKYFvN2xF0Pol5CZs06iuuI5mq+6jpzD8wWI="; 28 - } 29 - { 30 14 version = "8.5.3.1"; 31 15 minCudaVersion = "11.8"; 32 16 maxCudaVersion = "11.8"; ··· 61 45 ]; 62 46 # x86_64 63 47 linux-x86_64 = [ 64 - { 65 - version = "8.0.3.4"; 66 - minCudaVersion = "11.0"; 67 - maxCudaVersion = "11.3"; 68 - cudnnVersion = "8.2"; 69 - filename = "TensorRT-8.0.3.4.Linux.x86_64-gnu.cuda-11.3.cudnn8.2.tar.gz"; 70 - hash = "sha256-MXdDUCT/SqWm26jB7QarEcwOG/O7cS36Y6Q0IvQTE/M="; 71 - } 72 - { 73 - # The docs claim this supports through 11.5 despite the file name indicating 11.4. 74 - version = "8.2.5.1"; 75 - minCudaVersion = "11.0"; 76 - maxCudaVersion = "11.5"; 77 - cudnnVersion = "8.2"; 78 - filename = "TensorRT-8.2.5.1.Linux.x86_64-gnu.cuda-11.4.cudnn8.2.tar.gz"; 79 - hash = "sha256-LcNpYvDiT7AavqzK1MRlijo2qDN7jznigeS77US713E="; 80 - } 81 - { 82 - # The docs claim this supports through 11.7 despite the file name indicating 11.6. 83 - version = "8.4.3.1"; 84 - minCudaVersion = "11.0"; 85 - maxCudaVersion = "11.7"; 86 - cudnnVersion = "8.4"; 87 - filename = "TensorRT-8.4.3.1.Linux.x86_64-gnu.cuda-11.6.cudnn8.4.tar.gz"; 88 - hash = "sha256-jXwghcFjncxzh1BIwjWYqFJs4wiRNoduMdkCWOSeT2E="; 89 - } 90 48 { 91 49 version = "8.5.3.1"; 92 50 minCudaVersion = "11.0";
+25 -28
pkgs/development/embedded/fpga/apio/default.nix pkgs/by-name/ap/apio/package.nix
··· 1 1 { 2 2 lib, 3 - buildPythonApplication, 3 + python3Packages, 4 4 fetchFromGitHub, 5 - click, 6 - semantic-version, 7 - requests, 8 - colorama, 9 - pyserial, 10 - wheel, 11 - scons, 12 - setuptools, 13 5 tinyprog, 14 - flit-core, 15 - pytestCheckHook, 6 + scons, 16 7 }: 17 8 18 - buildPythonApplication rec { 9 + python3Packages.buildPythonApplication rec { 19 10 pname = "apio"; 20 11 version = "0.9.5"; 21 12 ··· 24 15 src = fetchFromGitHub { 25 16 owner = "FPGAwars"; 26 17 repo = "apio"; 27 - rev = "v${version}"; 18 + tag = "v${version}"; 28 19 hash = "sha256-VU4tOszGkw20DWW2SerFsnjFiSkrSwqBcwosGnHJfU8="; 29 20 }; 30 21 ··· 50 41 'version = semantic_version.Version(pkg_version.replace(".dev", "-dev"))' 51 42 ''; 52 43 53 - nativeBuildInputs = [ 44 + nativeBuildInputs = with python3Packages; [ 54 45 flit-core 55 46 ]; 56 47 57 - propagatedBuildInputs = [ 58 - click 59 - semantic-version 60 - requests 61 - colorama 62 - pyserial 63 - wheel 64 - scons 65 - setuptools # needs pkg_resources at runtime (technically not needed when tinyprog is also in this list because of the propagatedBuildInputs of tinyprog) 48 + dependencies = 49 + with python3Packages; 50 + [ 51 + click 52 + semantic-version 53 + requests 54 + colorama 55 + pyserial 56 + wheel 57 + ] 58 + ++ [ 59 + scons 60 + tinyprog # needed for upload to TinyFPGA 61 + ]; 66 62 67 - tinyprog # needed for upload to TinyFPGA 63 + build-system = with python3Packages; [ 64 + setuptools # needs pkg_resources at runtime (technically not needed when tinyprog is also in this list because of the propagatedBuildInputs of tinyprog) 68 65 ]; 69 66 70 - nativeCheckInputs = [ 67 + nativeCheckInputs = with python3Packages; [ 71 68 pytestCheckHook 72 69 ]; 73 70 ··· 80 77 81 78 strictDeps = true; 82 79 83 - meta = with lib; { 80 + meta = { 84 81 description = "Open source ecosystem for open FPGA boards"; 85 82 mainProgram = "apio"; 86 83 homepage = "https://github.com/FPGAwars/apio"; 87 - license = licenses.gpl2Only; 88 - maintainers = with maintainers; [ Luflosi ]; 84 + license = lib.licenses.gpl2Only; 85 + maintainers = with lib.maintainers; [ Luflosi ]; 89 86 }; 90 87 }
+2 -2
pkgs/development/interpreters/babashka/clojure-tools.nix
··· 7 7 }: 8 8 clojure.overrideAttrs (previousAttrs: { 9 9 pname = "babashka-clojure-tools"; 10 - version = "1.12.0.1530"; 10 + version = "1.12.1.1550"; 11 11 12 12 src = fetchurl { 13 13 url = previousAttrs.src.url; 14 - hash = "sha256-D/JLioEmujnTLeeEoIdnxd8lk4TLdsbuPbTWECcF7Uk="; 14 + hash = "sha256-kGxiVnnHLnA1h1mIpGOSodg9Fu4d9ZmlYaL9M0JLDT8="; 15 15 }; 16 16 })
+2 -2
pkgs/development/interpreters/babashka/default.nix
··· 8 8 9 9 buildGraalvmNativeImage (finalAttrs: { 10 10 pname = "babashka-unwrapped"; 11 - version = "1.12.200"; 11 + version = "1.12.206"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/babashka/babashka/releases/download/v${finalAttrs.version}/babashka-${finalAttrs.version}-standalone.jar"; 15 - sha256 = "sha256-hxcoVUaL19RM56fG8oxSKQwPHXDzaoSdCdHXSTXQ9fI="; 15 + sha256 = "sha256-2JrfFddG5ZSJkDXjaNnAyYfvuwR3muDgEVyG82KRFkU="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ installShellFiles ];
+3 -3
pkgs/development/python-modules/array-api-strict/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "array-api-strict"; 14 - version = "2.4"; 14 + version = "2.4.1"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "data-apis"; 19 19 repo = "array-api-strict"; 20 20 tag = version; 21 - hash = "sha256-NofL9F3pQSKN9RpOlHPigLadIu5ELokwUuUMCZyhr3s="; 21 + hash = "sha256-m0uWaeUwHsWyAOxS7nxY8c+HWUhz+mOKNE4M0DsiClI="; 22 22 }; 23 23 24 24 postPatch = '' ··· 47 47 48 48 meta = { 49 49 homepage = "https://data-apis.org/array-api-strict"; 50 - changelog = "https://github.com/data-apis/array-api-strict/releases/tag/${version}"; 50 + changelog = "https://github.com/data-apis/array-api-strict/releases/tag/${src.tag}"; 51 51 description = "Strict, minimal implementation of the Python array API"; 52 52 license = lib.licenses.bsd3; 53 53 maintainers = with lib.maintainers; [ berquist ];
+2 -2
pkgs/development/python-modules/azure-mgmt-netapp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-netapp"; 14 - version = "13.5.0"; 14 + version = "13.6.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchPypi { 20 20 pname = "azure_mgmt_netapp"; 21 21 inherit version; 22 - hash = "sha256-StCIk/lM+SceJVjw5CDwheg6avcSep1VYXLwi96UXJE="; 22 + hash = "sha256-2ieBtC4NL/6N+ijF+0nxH1LVus3wmAy90Th2GCgt+5U="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/datadog/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "datadog"; 26 - version = "0.52.0"; 26 + version = "0.52.1"; 27 27 pyproject = true; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "DataDog"; 31 31 repo = "datadogpy"; 32 32 tag = "v${version}"; 33 - hash = "sha256-CmSUbqctElk9sCyQAL+SKqJBpT1vlpmp6mEX6HWN8Po="; 33 + hash = "sha256-WhfCREEuFT4b75C62KWnAyYGt4/j5tuuP8hZOHGNo10="; 34 34 }; 35 35 36 36 build-system = [ hatchling ];
+5 -8
pkgs/development/python-modules/find-libpython/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 pytestCheckHook, 6 - pythonOlder, 7 6 setuptools, 8 7 setuptools-scm, 9 8 }: 10 9 11 10 buildPythonPackage rec { 12 11 pname = "find-libpython"; 13 - version = "0.4.0"; 12 + version = "0.4.1"; 14 13 pyproject = true; 15 14 16 - disabled = pythonOlder "3.7"; 17 - 18 15 src = fetchFromGitHub { 19 16 owner = "ktbarrett"; 20 17 repo = "find_libpython"; 21 18 tag = "v${version}"; 22 - hash = "sha256-rYVGE9P5Xtm32kMoiqaZVMgnDbX3JBnI1uV80aNNOfw="; 19 + hash = "sha256-6VRUkRACtZt8n2VT5MwxZ51/ep+Lt/jmEGyfI1zseJw="; 23 20 }; 24 21 25 - nativeBuildInputs = [ 22 + build-system = [ 26 23 setuptools 27 24 setuptools-scm 28 25 ]; ··· 33 30 34 31 meta = with lib; { 35 32 description = "Finds the libpython associated with your environment, wherever it may be hiding"; 36 - mainProgram = "find_libpython"; 37 - changelog = "https://github.com/ktbarrett/find_libpython/releases/tag/v${version}"; 33 + changelog = "https://github.com/ktbarrett/find_libpython/releases/tag/${src.tag}"; 38 34 homepage = "https://github.com/ktbarrett/find_libpython"; 39 35 license = licenses.mit; 40 36 maintainers = with maintainers; [ jleightcap ]; 37 + mainProgram = "find_libpython"; 41 38 }; 42 39 }
+3 -3
pkgs/development/python-modules/inquirer/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "inquirer"; 23 - version = "3.4.0"; 23 + version = "3.4.1"; 24 24 pyproject = true; 25 25 26 26 disabled = pythonOlder "3.8"; ··· 29 29 owner = "magmax"; 30 30 repo = "python-inquirer"; 31 31 tag = "v${version}"; 32 - hash = "sha256-vIW/rD22PFND9EPjS0YPbIauKgh9KHh1gXf1L8g/f10="; 32 + hash = "sha256-xVHmdJGN5yOxbEkZIiOLqeUwcfdj+o7jTTWBD75szII="; 33 33 }; 34 34 35 35 build-system = [ poetry-core ]; ··· 51 51 meta = with lib; { 52 52 description = "Collection of common interactive command line user interfaces, based on Inquirer.js"; 53 53 homepage = "https://github.com/magmax/python-inquirer"; 54 - changelog = "https://github.com/magmax/python-inquirer/releases/tag/v${version}"; 54 + changelog = "https://github.com/magmax/python-inquirer/releases/tag/${src.tag}"; 55 55 license = licenses.mit; 56 56 maintainers = with maintainers; [ mmahut ]; 57 57 };
+2 -2
pkgs/development/python-modules/litellm/default.nix
··· 46 46 47 47 buildPythonPackage rec { 48 48 pname = "litellm"; 49 - version = "1.74.7"; 49 + version = "1.74.9"; 50 50 pyproject = true; 51 51 52 52 disabled = pythonOlder "3.8"; ··· 55 55 owner = "BerriAI"; 56 56 repo = "litellm"; 57 57 tag = "v${version}-stable"; 58 - hash = "sha256-PKBT2Yhn5SprToMGyB2i35Iy+97FNVpyAo/wAwxuBoc="; 58 + hash = "sha256-SGZwt2jzAQbOMlvudqPWat281su6OwT7JG2CNSMjL3A="; 59 59 }; 60 60 61 61 build-system = [ poetry-core ];
+3 -3
pkgs/development/python-modules/ml-dtypes/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "ml-dtypes"; 19 - version = "0.5.2"; 19 + version = "0.5.3"; 20 20 pyproject = true; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "jax-ml"; 24 24 repo = "ml_dtypes"; 25 25 tag = "v${version}"; 26 - hash = "sha256-XRvqyWyi5smaLh5ese5QY2aIOkVliXGc7ngwT5CRsmc="; 26 + hash = "sha256-y0w+8h6KMYf6ZvlP3rEVt1I11jkbNNuJDIvfNFFaBQE="; 27 27 # Since this upstream patch (https://github.com/jax-ml/ml_dtypes/commit/1bfd097e794413b0d465fa34f2eff0f3828ff521), 28 28 # the attempts to use the nixpkgs packaged eigen dependency have failed. 29 29 # Hence, we rely on the bundled eigen library. ··· 32 32 33 33 postPatch = '' 34 34 substituteInPlace pyproject.toml \ 35 - --replace-fail "setuptools~=75.7.0" "setuptools" 35 + --replace-fail "setuptools~=80.8.0" "setuptools" 36 36 ''; 37 37 38 38 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pathlib-abc/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pathlib-abc"; 12 - version = "0.4.3"; 12 + version = "0.5.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 17 17 src = fetchPypi { 18 18 pname = "pathlib_abc"; 19 19 inherit version; 20 - hash = "sha256-zJs6N10psy0KVxRa2c5fNAqySXKf9+0TC8fi29RcrQs="; 20 + hash = "sha256-RpyeVALG0wB9EcQGLrZlEwCkJdZwyRO0vEvXgZnOwsM="; 21 21 }; 22 22 23 23 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/pebble/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pebble"; 13 - version = "5.1.2"; 13 + version = "5.1.3"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 19 19 owner = "noxdafox"; 20 20 repo = "pebble"; 21 21 tag = version; 22 - hash = "sha256-VQ6611HMj19Sq5IXqKNqVHEau8OZu8HEYFRe5LKivaI="; 22 + hash = "sha256-17kAIvHI2/6p8Chm7pTkLWP+QcnIcARpH+OBVerbefQ="; 23 23 }; 24 24 25 25 build-system = [
+3 -1
pkgs/development/python-modules/qtile-extras/default.nix
··· 17 17 requests, 18 18 setuptools-scm, 19 19 xorgserver, 20 + nixosTests, 20 21 }: 21 - 22 22 buildPythonPackage rec { 23 23 pname = "qtile-extras"; 24 24 version = "0.33.0"; ··· 85 85 ''; 86 86 87 87 pythonImportsCheck = [ "qtile_extras" ]; 88 + 89 + passthru.tests.qtile-extras = nixosTests.qtile-extras; 88 90 89 91 meta = with lib; { 90 92 description = "Extra modules and widgets for the Qtile tiling window manager";
+2 -2
pkgs/development/python-modules/torch/source/default.nix
··· 526 526 blas 527 527 blas.provider 528 528 ] 529 - # Including openmp leads to two copies being used. This segfaults on ARM. 529 + # Including openmp leads to two copies being used on ARM, which segfaults. 530 530 # https://github.com/pytorch/pytorch/issues/149201#issuecomment-2776842320 531 - # ++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ] 531 + ++ lib.optionals (stdenv.cc.isClang && !stdenv.hostPlatform.isAarch64) [ llvmPackages.openmp ] 532 532 ++ lib.optionals cudaSupport ( 533 533 with cudaPackages; 534 534 [
+1 -1
pkgs/development/tools/infisical/default.nix
··· 21 21 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 22 22 23 23 # the version of infisical 24 - version = "0.41.88"; 24 + version = "0.41.90"; 25 25 26 26 # the platform-specific, statically linked binary 27 27 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-P1IsNiJMXbAx4w2/tvEQlNa+jqC705CCfLjwVRg73AM=" 3 - , "x86_64-darwin": "sha256-5O6aIfomktBUh4ggduuMJQzLdK+q0pevdD3F5RpSFRU=" 4 - , "aarch64-linux": "sha256-FHaDpHODFSEcv/3+bEBxT7fdZzH13N9MPN5FrIDY4k8=" 5 - , "aarch64-darwin": "sha256-POn9SpierzUYtAppyGBVNNnpnaGOYleDuaZ2/gIETig=" 2 + , "x86_64-linux": "sha256-/2fksPX6/hsz6hYGdn5iNah0LMR+avY0zf9UuNH8zAo=" 3 + , "x86_64-darwin": "sha256-SQD0zqHl8eLBz8jsSf6tOqKSFimgrjAX+7M0o8yAEqo=" 4 + , "aarch64-linux": "sha256-lrkyolCSgLQiet287Br0aGYCP/daaYzJAaqMvsqsbsw=" 5 + , "aarch64-darwin": "sha256-pw06koxiY9gYvDw0b6tRTMy3BGYS36mxV0q8TWEA7vM=" 6 6 }
+2 -3
pkgs/games/openttd/nml.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "openttd-nml"; 9 - version = "0.7.6"; 9 + version = "0.8.0"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "OpenTTD"; 14 14 repo = "nml"; 15 15 tag = version; 16 - hash = "sha256-jAvzfmv8iLs4jb/rzRswiAPHZpx20hjfbG/NY4HGcF0="; 16 + hash = "sha256-LZhkyYTtolB9/1ZvwYa+TJJRBIifyuqlMawK7vhPV0k="; 17 17 }; 18 18 19 19 propagatedBuildInputs = with python3.pkgs; [ 20 20 pillow 21 - ply 22 21 ]; 23 22 24 23 meta = with lib; {
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 90 90 }); 91 91 92 92 beta = selectHighestVersion latest (generic { 93 - version = "575.51.02"; 94 - sha256_64bit = "sha256-XZ0N8ISmoAC8p28DrGHk/YN1rJsInJ2dZNL8O+Tuaa0="; 95 - sha256_aarch64 = "sha256-NNeQU9sPfH1sq3d5RUq1MWT6+7mTo1SpVfzabYSVMVI="; 96 - openSha256 = "sha256-NQg+QDm9Gt+5bapbUO96UFsPnz1hG1dtEwT/g/vKHkw="; 97 - settingsSha256 = "sha256-6n9mVkEL39wJj5FB1HBml7TTJhNAhS/j5hqpNGFQE4w="; 98 - persistencedSha256 = "sha256-dgmco+clEIY8bedxHC4wp+fH5JavTzyI1BI8BxoeJJI="; 93 + version = "580.65.06"; 94 + sha256_64bit = "sha256-BLEIZ69YXnZc+/3POe1fS9ESN1vrqwFy6qGHxqpQJP8="; 95 + sha256_aarch64 = "sha256-4CrNwNINSlQapQJr/dsbm0/GvGSuOwT/nLnIknAM+cQ="; 96 + openSha256 = "sha256-BKe6LQ1ZSrHUOSoV6UCksUE0+TIa0WcCHZv4lagfIgA="; 97 + settingsSha256 = "sha256-9PWmj9qG/Ms8Ol5vLQD3Dlhuw4iaFtVHNC0hSyMCU24="; 98 + persistencedSha256 = "sha256-ETRfj2/kPbKYX1NzE0dGr/ulMuzbICIpceXdCRDkAxA="; 99 99 }); 100 100 101 101 # Vulkan developer beta driver
+3 -3
pkgs/servers/monitoring/laurel/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "laurel"; 10 - version = "0.7.2"; 10 + version = "0.7.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "threathunters-io"; 14 14 repo = "laurel"; 15 15 tag = "v${version}"; 16 - hash = "sha256-rOf7UtkMoYpReZr/2135QcpMEfYD80IY4zF0TwAWr4I="; 16 + hash = "sha256-4LIv9rdYTPPERgMT8mF6Ymdur9f4tzNkkkMHBePtAH0="; 17 17 }; 18 18 19 - cargoHash = "sha256-Pfs4Bg6VZIiiXQu0ZKcDi9zeEYl08kOnWi3R2iaQG24="; 19 + cargoHash = "sha256-AgyCiCsP3iuk0mRXkFAPDbXG12jE7uXfcGblpALbpMA="; 20 20 21 21 postPatch = '' 22 22 # Upstream started to redirect aarch64-unknown-linux-gnu to aarch64-linux-gnu-gcc
-8
pkgs/test/cuda/default.nix
··· 4 4 5 5 cudaPackages, 6 6 7 - cudaPackages_11_0, 8 - cudaPackages_11_1, 9 - cudaPackages_11_2, 10 - cudaPackages_11_3, 11 - cudaPackages_11_4, 12 - cudaPackages_11_5, 13 - cudaPackages_11_6, 14 - cudaPackages_11_7, 15 7 cudaPackages_11_8, 16 8 cudaPackages_11, 17 9
+8 -8
pkgs/tools/filesystems/orangefs/default.nix pkgs/by-name/or/orangefs/package.nix
··· 14 14 nixosTests, 15 15 }: 16 16 17 - stdenv.mkDerivation rec { 17 + stdenv.mkDerivation (finalAttrs: { 18 18 pname = "orangefs"; 19 19 version = "2.9.8"; 20 20 21 21 src = fetchurl { 22 - url = "http://download.orangefs.org/current/source/orangefs-${version}.tar.gz"; 23 - sha256 = "0c2yla615j04ygclfavh8g5miqhbml2r0zs2c5mvkacf9in7p7sq"; 22 + url = "http://download.orangefs.org/current/source/orangefs-${finalAttrs.version}.tar.gz"; 23 + hash = "sha256-WJ97bEyOqblrYUJ/kAWtC+JYy0NwK0fZ8wTIEoyiXjA="; 24 24 }; 25 25 26 26 patches = [ ··· 28 28 (fetchpatch { 29 29 name = "fno-common.patch"; 30 30 url = "https://github.com/waltligon/orangefs/commit/f472beb50356bea657d1c32f1ca8a73e4718fd57.patch"; 31 - sha256 = "0jaq1ffdxgymjciddsy8h8r87nwbif4v5yv4wd7jxysn25a0hdai"; 31 + hash = "sha256-UTUIVBFW+y5P42T7somLi9uDMoLI69Yik9W/3pwLWEk="; 32 32 }) 33 33 ]; 34 34 ··· 83 83 84 84 passthru.tests = { inherit (nixosTests) orangefs; }; 85 85 86 - meta = with lib; { 86 + meta = { 87 87 description = "Scale-out network file system for use on high-end computing systems"; 88 88 homepage = "http://www.orangefs.org/"; 89 - license = with licenses; [ 89 + license = with lib.licenses; [ 90 90 asl20 91 91 bsd3 92 92 gpl2Only ··· 95 95 openldap 96 96 ]; 97 97 platforms = [ "x86_64-linux" ]; 98 - maintainers = with maintainers; [ markuskowa ]; 98 + maintainers = with lib.maintainers; [ markuskowa ]; 99 99 }; 100 - } 100 + })
+1
pkgs/tools/inputmethods/ibus/default.nix
··· 234 234 description = "Intelligent Input Bus, input method framework"; 235 235 license = lib.licenses.lgpl21Plus; 236 236 platforms = lib.platforms.linux; 237 + mainProgram = "ibus"; 237 238 maintainers = with lib.maintainers; [ ttuegel ]; 238 239 }; 239 240 })
+1
pkgs/tools/security/keybase/default.nix
··· 41 41 meta = with lib; { 42 42 homepage = "https://www.keybase.io/"; 43 43 description = "Keybase official command-line utility and service"; 44 + mainProgram = "keybase"; 44 45 platforms = platforms.linux ++ platforms.darwin; 45 46 maintainers = with maintainers; [ 46 47 avaq
+1
pkgs/top-level/aliases.nix
··· 1762 1762 retroarchBare = retroarch-bare; # Added 2024-11-23 1763 1763 retroarchFull = retroarch-full; # Added 2024-11-23 1764 1764 retroshare06 = retroshare; 1765 + rewind-ai = throw "'rewind-ai' has been removed due to lack of of maintenance upstream"; # Added 2025-08-03 1765 1766 responsively-app = throw "'responsively-app' has been removed due to lack of maintainance upstream."; # Added 2025-06-25 1766 1767 rftg = throw "'rftg' has been removed due to lack of maintenance upstream."; # Added 2024-12-04 1767 1768 rigsofrods = rigsofrods-bin; # Added 2023-03-22
-30
pkgs/top-level/all-packages.nix
··· 1267 1267 python3Packages.callPackage ../applications/version-management/git-annex-remote-googledrive 1268 1268 { }; 1269 1269 1270 - git-archive-all = python3.pkgs.callPackage ../applications/version-management/git-archive-all { }; 1271 - 1272 1270 git-credential-manager = callPackage ../applications/version-management/git-credential-manager { }; 1273 - 1274 - git-imerge = python3Packages.callPackage ../applications/version-management/git-imerge { }; 1275 - 1276 - git-publish = python3Packages.callPackage ../applications/version-management/git-publish { }; 1277 1271 1278 1272 git-recent = callPackage ../applications/version-management/git-recent { 1279 1273 util-linux = if stdenv.hostPlatform.isLinux then util-linuxMinimal else util-linux; 1280 1274 }; 1281 1275 1282 1276 gitRepo = git-repo; 1283 - git-repo-updater = 1284 - python3Packages.callPackage ../applications/version-management/git-repo-updater 1285 - { }; 1286 - 1287 - git-review = python3Packages.callPackage ../applications/version-management/git-review { }; 1288 1277 1289 1278 gittyup = libsForQt5.callPackage ../applications/version-management/gittyup { }; 1290 1279 ··· 1587 1576 arduino-core = callPackage ../development/embedded/arduino/arduino-core/chrootenv.nix { }; 1588 1577 arduino-core-unwrapped = callPackage ../development/embedded/arduino/arduino-core { }; 1589 1578 1590 - apio = python3Packages.callPackage ../development/embedded/fpga/apio { }; 1591 - 1592 1579 apitrace = libsForQt5.callPackage ../applications/graphics/apitrace { }; 1593 1580 1594 1581 arpack-mpi = arpack.override { useMpi = true; }; ··· 2699 2686 # Top-level fix-point used in `cudaPackages`' internals 2700 2687 _cuda = import ../development/cuda-modules/_cuda; 2701 2688 2702 - cudaPackages_11_0 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.0"; }; 2703 - cudaPackages_11_1 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.1"; }; 2704 - cudaPackages_11_2 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.2"; }; 2705 - cudaPackages_11_3 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.3"; }; 2706 - cudaPackages_11_4 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.4"; }; 2707 - cudaPackages_11_5 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.5"; }; 2708 - cudaPackages_11_6 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.6"; }; 2709 - cudaPackages_11_7 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.7"; }; 2710 2689 cudaPackages_11_8 = callPackage ./cuda-packages.nix { cudaMajorMinorVersion = "11.8"; }; 2711 2690 cudaPackages_11 = recurseIntoAttrs cudaPackages_11_8; 2712 2691 ··· 3970 3949 3971 3950 opl3bankeditor = libsForQt5.callPackage ../tools/audio/opl3bankeditor { }; 3972 3951 opn2bankeditor = libsForQt5.callPackage ../tools/audio/opl3bankeditor/opn2bankeditor.nix { }; 3973 - 3974 - orangefs = callPackage ../tools/filesystems/orangefs { }; 3975 3952 3976 3953 osl = libsForQt5.callPackage ../development/compilers/osl { 3977 3954 libclang = llvmPackages_19.libclang; ··· 11474 11451 inherit (kdePackages) breeze-icons; 11475 11452 }; 11476 11453 11477 - material-kwin-decoration = libsForQt5.callPackage ../data/themes/material-kwin-decoration { }; 11478 - 11479 11454 mplus-outline-fonts = recurseIntoAttrs (callPackage ../data/fonts/mplus-outline-fonts { }); 11480 11455 11481 11456 noto-fonts-cjk-serif-static = callPackage ../by-name/no/noto-fonts-cjk-serif/package.nix { ··· 11582 11557 tex-gyre = callPackages ../data/fonts/tex-gyre { }; 11583 11558 11584 11559 tex-gyre-math = callPackages ../data/fonts/tex-gyre-math { }; 11585 - 11586 - utterly-nord-plasma = kdePackages.callPackage ../data/themes/utterly-nord-plasma { 11587 - # renamed in KF6 11588 - plasma-framework = kdePackages.libplasma; 11589 - }; 11590 11560 11591 11561 whitesur-kde = kdePackages.callPackage ../data/themes/whitesur-kde { }; 11592 11562
+5 -1
pkgs/top-level/cuda-packages.nix
··· 173 173 ( 174 174 final: _: 175 175 { 176 - cuda_compat = runCommand "cuda_compat" { meta.platforms = [ ]; } "false"; # Prevent missing attribute errors 176 + # Prevent missing attribute errors 177 + # NOTE(@connorbaker): CUDA 12.3 does not have a cuda_compat package; indeed, none of the release supports 178 + # Jetson devices. To avoid errors in the case that cuda_compat is not defined, we have a dummy package which 179 + # is always defined, but does nothing, will not build successfully, and has no platforms. 180 + cuda_compat = runCommand "cuda_compat" { meta.platforms = [ ]; } "false"; 177 181 } 178 182 // lib.packagesFromDirectoryRecursive { 179 183 inherit (final) callPackage;