Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 44dfdaf4 a0f68eb6

+550 -409
+6
maintainers/maintainer-list.nix
··· 9648 githubId = 9705357; 9649 name = "Guillaume Bouchard"; 9650 }; 9651 GuillaumeDesforges = { 9652 email = "aceus02@gmail.com"; 9653 github = "GuillaumeDesforges";
··· 9648 githubId = 9705357; 9649 name = "Guillaume Bouchard"; 9650 }; 9651 + guilhermenl = { 9652 + email = "acc.guilhermenl@gmail.com"; 9653 + github = "guilherme-n-l"; 9654 + githubId = 95086304; 9655 + name = "Guilherme Lima"; 9656 + }; 9657 GuillaumeDesforges = { 9658 email = "aceus02@gmail.com"; 9659 github = "GuillaumeDesforges";
+7
nixos/doc/manual/release-notes/rl-2511.section.md
··· 141 142 - `libvirt` now supports using `nftables` backend. 143 144 - `services.ntpd-rs` now performs configuration validation. 145 146 - `services.postsrsd` now automatically integrates with the local Postfix instance, when enabled. This behavior can disabled using the [services.postsrsd.configurePostfix](#opt-services.postsrsd.configurePostfix) option.
··· 141 142 - `libvirt` now supports using `nftables` backend. 143 144 + - `systemd.extraConfig` and `boot.initrd.systemd.extraConfig` was converted to RFC42-style `systemd.settings.Manager` and `boot.initrd.systemd.settings.Manager` respectively. 145 + - `systemd.watchdog.runtimeTime` was renamed to `systemd.settings.Manager.RuntimeWatchdogSec` 146 + - `systemd.watchdog.device` was renamed to `systemd.settings.Manager.WatchdogDevice` 147 + - `systemd.watchdog.rebootTime` was renamed to `systemd.settings.Manager.RebootWatchdogSec` 148 + - `systemd.watchdog.kexecTime` was renamed to `systemd.settings.Manager.KExecWatchdogSec` 149 + - `systemd.enableCgroupAccounting` was removed. Cgroup accounting now needs to be disabled directly using `systemd.settings.Manager.*Accounting`. 150 + 151 - `services.ntpd-rs` now performs configuration validation. 152 153 - `services.postsrsd` now automatically integrates with the local Postfix instance, when enabled. This behavior can disabled using the [services.postsrsd.configurePostfix](#opt-services.postsrsd.configurePostfix) option.
+1 -1
nixos/modules/security/pam.nix
··· 1663 must be that described in {manpage}`limits.conf(5)`. 1664 1665 Note that these limits do not apply to systemd services, 1666 - whose limits can be changed via {option}`systemd.extraConfig` 1667 instead. 1668 ''; 1669 };
··· 1663 must be that described in {manpage}`limits.conf(5)`. 1664 1665 Note that these limits do not apply to systemd services, 1666 + whose limits can be changed via {option}`systemd.settings.Manager` 1667 instead. 1668 ''; 1669 };
-2
nixos/modules/services/monitoring/netdata.nix
··· 412 }); 413 }; 414 415 - systemd.enableCgroupAccounting = true; 416 - 417 security.wrappers = { 418 "apps.plugin" = { 419 source = "${cfg.package}/libexec/netdata/plugins.d/apps.plugin.org";
··· 412 }); 413 }; 414 415 security.wrappers = { 416 "apps.plugin" = { 417 source = "${cfg.package}/libexec/netdata/plugins.d/apps.plugin.org";
+47 -91
nixos/modules/system/boot/systemd.nix
··· 24 mountToUnit 25 automountToUnit 26 sliceToUnit 27 ; 28 29 upstreamSystemUnits = [ ··· 405 ''; 406 }; 407 408 - enableCgroupAccounting = mkOption { 409 - default = true; 410 - type = types.bool; 411 - description = '' 412 - Whether to enable cgroup accounting; see {manpage}`cgroups(7)`. 413 ''; 414 - }; 415 - 416 - extraConfig = mkOption { 417 - default = ""; 418 - type = types.lines; 419 - example = "DefaultLimitCORE=infinity"; 420 description = '' 421 - Extra config options for systemd. See {manpage}`systemd-system.conf(5)` man page 422 for available options. 423 ''; 424 }; ··· 457 by other NixOS modules. 458 ''; 459 }; 460 - 461 - watchdog.device = mkOption { 462 - type = types.nullOr types.path; 463 - default = null; 464 - example = "/dev/watchdog"; 465 - description = '' 466 - The path to a hardware watchdog device which will be managed by systemd. 467 - If not specified, systemd will default to `/dev/watchdog`. 468 - ''; 469 - }; 470 - 471 - watchdog.runtimeTime = mkOption { 472 - type = types.nullOr types.str; 473 - default = null; 474 - example = "30s"; 475 - description = '' 476 - The amount of time which can elapse before a watchdog hardware device 477 - will automatically reboot the system. 478 - 479 - Valid time units include "ms", "s", "min", "h", "d", and "w"; 480 - see {manpage}`systemd.time(7)`. 481 - ''; 482 - }; 483 - 484 - watchdog.rebootTime = mkOption { 485 - type = types.nullOr types.str; 486 - default = null; 487 - example = "10m"; 488 - description = '' 489 - The amount of time which can elapse after a reboot has been triggered 490 - before a watchdog hardware device will automatically reboot the system. 491 - If left `null`, systemd will use its default of 10 minutes; 492 - see {manpage}`systemd-system.conf(5)`. 493 - 494 - Valid time units include "ms", "s", "min", "h", "d", and "w"; 495 - see also {manpage}`systemd.time(7)`. 496 - ''; 497 - }; 498 - 499 - watchdog.kexecTime = mkOption { 500 - type = types.nullOr types.str; 501 - default = null; 502 - example = "10m"; 503 - description = '' 504 - The amount of time which can elapse when `kexec` is being executed before 505 - a watchdog hardware device will automatically reboot the system. This 506 - option should only be enabled if `reloadTime` is also enabled; 507 - see {manpage}`kexec(8)`. 508 - 509 - Valid time units include "ms", "s", "min", "h", "d", and "w"; 510 - see also {manpage}`systemd.time(7)`. 511 - ''; 512 - }; 513 }; 514 515 ###### implementation ··· 638 639 "systemd/system.conf".text = '' 640 [Manager] 641 - ManagerEnvironment=${ 642 - lib.concatStringsSep " " ( 643 - lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment 644 - ) 645 - } 646 - ${optionalString cfg.enableCgroupAccounting '' 647 - DefaultCPUAccounting=yes 648 - DefaultIOAccounting=yes 649 - DefaultBlockIOAccounting=yes 650 - DefaultIPAccounting=yes 651 - ''} 652 - DefaultLimitCORE=infinity 653 - ${optionalString (cfg.watchdog.device != null) '' 654 - WatchdogDevice=${cfg.watchdog.device} 655 - ''} 656 - ${optionalString (cfg.watchdog.runtimeTime != null) '' 657 - RuntimeWatchdogSec=${cfg.watchdog.runtimeTime} 658 - ''} 659 - ${optionalString (cfg.watchdog.rebootTime != null) '' 660 - RebootWatchdogSec=${cfg.watchdog.rebootTime} 661 - ''} 662 - ${optionalString (cfg.watchdog.kexecTime != null) '' 663 - KExecWatchdogSec=${cfg.watchdog.kexecTime} 664 - ''} 665 - 666 - ${cfg.extraConfig} 667 ''; 668 669 "systemd/sleep.conf".text = '' ··· 748 SYSTEMD_UNIT_PATH = lib.mkIf ( 749 config.boot.extraSystemdUnitPaths != [ ] 750 ) "${builtins.concatStringsSep ":" config.boot.extraSystemdUnitPaths}:"; 751 }; 752 753 system.requiredKernelConfig = map config.lib.kernelConfig.isEnabled [ ··· 858 To forcibly reenable cgroup v1 support, you can set boot.kernelParams = [ "systemd.unified_cgroup_hierarchy=0" "SYSTEMD_CGROUP_ENABLE_LEGACY_FORCE=1" ]. 859 NixOS does not officially support this configuration and might cause your system to be unbootable in future versions. You are on your own. 860 '') 861 ]; 862 }
··· 24 mountToUnit 25 automountToUnit 26 sliceToUnit 27 + attrsToSection 28 ; 29 30 upstreamSystemUnits = [ ··· 406 ''; 407 }; 408 409 + settings.Manager = mkOption { 410 + default = { }; 411 + defaultText = lib.literalExpression '' 412 + { 413 + DefaultIOAccounting = true; 414 + DefaultIPAccounting = true; 415 + } 416 ''; 417 + type = lib.types.submodule { 418 + freeformType = types.attrsOf unitOption; 419 + }; 420 + example = { 421 + WatchdogDevice = "/dev/watchdog"; 422 + RuntimeWatchdogSec = "30s"; 423 + RebootWatchdogSec = "10min"; 424 + KExecWatchdogSec = "5min"; 425 + }; 426 description = '' 427 + Options for the global systemd service manager. See {manpage}`systemd-system.conf(5)` man page 428 for available options. 429 ''; 430 }; ··· 463 by other NixOS modules. 464 ''; 465 }; 466 }; 467 468 ###### implementation ··· 591 592 "systemd/system.conf".text = '' 593 [Manager] 594 + ${attrsToSection cfg.settings.Manager} 595 ''; 596 597 "systemd/sleep.conf".text = '' ··· 676 SYSTEMD_UNIT_PATH = lib.mkIf ( 677 config.boot.extraSystemdUnitPaths != [ ] 678 ) "${builtins.concatStringsSep ":" config.boot.extraSystemdUnitPaths}:"; 679 + }; 680 + systemd.settings.Manager = { 681 + ManagerEnvironment = lib.concatStringsSep " " ( 682 + lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment 683 + ); 684 + DefaultIOAccounting = lib.mkDefault true; 685 + DefaultIPAccounting = lib.mkDefault true; 686 }; 687 688 system.requiredKernelConfig = map config.lib.kernelConfig.isEnabled [ ··· 793 To forcibly reenable cgroup v1 support, you can set boot.kernelParams = [ "systemd.unified_cgroup_hierarchy=0" "SYSTEMD_CGROUP_ENABLE_LEGACY_FORCE=1" ]. 794 NixOS does not officially support this configuration and might cause your system to be unbootable in future versions. You are on your own. 795 '') 796 + (mkRemovedOptionModule [ "systemd" "extraConfig" ] "Use systemd.settings.Manager instead.") 797 + (lib.mkRenamedOptionModule 798 + [ "systemd" "watchdog" "device" ] 799 + [ "systemd" "settings" "Manager" "WatchdogDevice" ] 800 + ) 801 + (lib.mkRenamedOptionModule 802 + [ "systemd" "watchdog" "runtimeTime" ] 803 + [ "systemd" "settings" "Manager" "RuntimeWatchdogSec" ] 804 + ) 805 + (lib.mkRenamedOptionModule 806 + [ "systemd" "watchdog" "rebootTime" ] 807 + [ "systemd" "settings" "Manager" "RebootWatchdogSec" ] 808 + ) 809 + (lib.mkRenamedOptionModule 810 + [ "systemd" "watchdog" "kexecTime" ] 811 + [ "systemd" "settings" "Manager" "KExecWatchdogSec" ] 812 + ) 813 + (mkRemovedOptionModule [ 814 + "systemd" 815 + "enableCgroupAccounting" 816 + ] "To disable cgroup accounting, disable systemd.settings.Manager.*Accounting directly.") 817 ]; 818 }
+35 -12
nixos/modules/system/boot/systemd/initrd.nix
··· 11 12 let 13 inherit (utils) systemdUtils escapeSystemdPath; 14 inherit (systemdUtils.lib) 15 generateUnits 16 pathToUnit ··· 21 timerToUnit 22 mountToUnit 23 automountToUnit 24 ; 25 26 cfg = config.boot.initrd.systemd; ··· 139 It only saved ~1MiB of initramfs size, but caused a few issues 140 like unloadable kernel modules. 141 '') 142 ]; 143 144 options.boot.initrd.systemd = { ··· 161 ''; 162 }; 163 164 - extraConfig = mkOption { 165 - default = ""; 166 - type = types.lines; 167 - example = "DefaultLimitCORE=infinity"; 168 description = '' 169 - Extra config options for systemd. See {manpage}`systemd-system.conf(5)` man page 170 for available options. 171 ''; 172 }; ··· 182 ]) 183 ); 184 default = { }; 185 example = { 186 SYSTEMD_LOG_LEVEL = "debug"; 187 }; ··· 450 }; 451 452 managerEnvironment.PATH = "/bin:/sbin"; 453 454 contents = { 455 "/tmp/.keep".text = "systemd requires the /tmp mount point in the initrd cpio archive"; ··· 458 459 "/etc/systemd/system.conf".text = '' 460 [Manager] 461 - DefaultEnvironment=PATH=/bin:/sbin 462 - ${cfg.extraConfig} 463 - ManagerEnvironment=${ 464 - lib.concatStringsSep " " ( 465 - lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment 466 - ) 467 - } 468 ''; 469 470 "/lib".source = "${config.system.build.modulesClosure}/lib";
··· 11 12 let 13 inherit (utils) systemdUtils escapeSystemdPath; 14 + inherit (systemdUtils.unitOptions) unitOption; 15 inherit (systemdUtils.lib) 16 generateUnits 17 pathToUnit ··· 22 timerToUnit 23 mountToUnit 24 automountToUnit 25 + attrsToSection 26 ; 27 28 cfg = config.boot.initrd.systemd; ··· 141 It only saved ~1MiB of initramfs size, but caused a few issues 142 like unloadable kernel modules. 143 '') 144 + (lib.mkRemovedOptionModule [ 145 + "boot" 146 + "initrd" 147 + "systemd" 148 + "extraConfig" 149 + ] "Use boot.initrd.systemd.settings.Manager instead.") 150 ]; 151 152 options.boot.initrd.systemd = { ··· 169 ''; 170 }; 171 172 + settings.Manager = mkOption { 173 + default = { }; 174 + defaultText = lib.literalExpression '' 175 + { 176 + DefaultEnvironment = "PATH=/bin:/sbin"; 177 + } 178 + ''; 179 + type = lib.types.submodule { 180 + freeformType = types.attrsOf unitOption; 181 + }; 182 + example = { 183 + WatchdogDevice = "/dev/watchdog"; 184 + RuntimeWatchdogSec = "30s"; 185 + RebootWatchdogSec = "10min"; 186 + KExecWatchdogSec = "5min"; 187 + }; 188 description = '' 189 + Options for the global systemd service manager used in initrd. See {manpage}`systemd-system.conf(5)` man page 190 for available options. 191 ''; 192 }; ··· 202 ]) 203 ); 204 default = { }; 205 + defaultText = '' 206 + { 207 + PATH = "/bin:/sbin"; 208 + } 209 + ''; 210 example = { 211 SYSTEMD_LOG_LEVEL = "debug"; 212 }; ··· 475 }; 476 477 managerEnvironment.PATH = "/bin:/sbin"; 478 + settings.Manager.ManagerEnvironment = lib.concatStringsSep " " ( 479 + lib.mapAttrsToList (n: v: "${n}=${lib.escapeShellArg v}") cfg.managerEnvironment 480 + ); 481 + settings.Manager.DefaultEnvironment = "PATH=/bin:/sbin"; 482 483 contents = { 484 "/tmp/.keep".text = "systemd requires the /tmp mount point in the initrd cpio archive"; ··· 487 488 "/etc/systemd/system.conf".text = '' 489 [Manager] 490 + ${attrsToSection cfg.settings.Manager} 491 ''; 492 493 "/lib".source = "${config.system.build.modulesClosure}/lib";
+6 -6
nixos/modules/testing/test-instrumentation.nix
··· 115 MaxLevelConsole=debug 116 ''; 117 118 - extraConfig = config.systemd.extraConfig; 119 } 120 121 (lib.mkIf cfg.initrdBackdoor { ··· 210 MaxLevelConsole=debug 211 ''; 212 213 - systemd.extraConfig = '' 214 # Don't clobber the console with duplicate systemd messages. 215 - ShowStatus=no 216 # Allow very slow start 217 - DefaultTimeoutStartSec=300 218 - DefaultDeviceTimeoutSec=300 219 - ''; 220 systemd.user.extraConfig = '' 221 # Allow very slow start 222 DefaultTimeoutStartSec=300
··· 115 MaxLevelConsole=debug 116 ''; 117 118 + settings.Manager = config.systemd.settings.Manager; 119 } 120 121 (lib.mkIf cfg.initrdBackdoor { ··· 210 MaxLevelConsole=debug 211 ''; 212 213 + systemd.settings.Manager = { 214 # Don't clobber the console with duplicate systemd messages. 215 + ShowStatus = false; 216 # Allow very slow start 217 + DefaultTimeoutStartSec = 300; 218 + DefaultDeviceTimeoutSec = 300; 219 + }; 220 systemd.user.extraConfig = '' 221 # Allow very slow start 222 DefaultTimeoutStartSec=300
+3 -3
nixos/tests/switch-test.nix
··· 68 echo "systemd 0" > $out/init-interface-version 69 ''; 70 71 - modifiedSystemConf.configuration.systemd.extraConfig = '' 72 - # Hello world! 73 - ''; 74 75 addedMount.configuration.virtualisation.fileSystems."/test" = { 76 device = "tmpfs";
··· 68 echo "systemd 0" > $out/init-interface-version 69 ''; 70 71 + modifiedSystemConf.configuration.systemd.settings.Manager = { 72 + DefaultEnvironment = "XXX_SYSTEM=foo"; 73 + }; 74 75 addedMount.configuration.virtualisation.fileSystems."/test" = { 76 device = "tmpfs";
+7 -8
nixos/tests/systemd.nix
··· 27 }; 28 }; 29 30 - systemd.extraConfig = "DefaultEnvironment=\"XXX_SYSTEM=foo\""; 31 systemd.user.extraConfig = "DefaultEnvironment=\"XXX_USER=bar\""; 32 services.journald.extraConfig = "Storage=volatile"; 33 test-support.displayManager.auto.user = "alice"; ··· 84 touch "$HOME/user_conf_read" 85 fi 86 ''; 87 - }; 88 - 89 - systemd.watchdog = { 90 - device = "/dev/watchdog"; 91 - runtimeTime = "30s"; 92 - rebootTime = "10min"; 93 - kexecTime = "5min"; 94 }; 95 96 environment.etc."systemd/system-preset/10-testservice.preset".text = ''
··· 27 }; 28 }; 29 30 + systemd.settings.Manager = { 31 + DefaultEnvironment = "XXX_SYSTEM=foo"; 32 + WatchdogDevice = "/dev/watchdog"; 33 + RuntimeWatchdogSec = "30s"; 34 + RebootWatchdogSec = "10min"; 35 + KExecWatchdogSec = "5min"; 36 + }; 37 systemd.user.extraConfig = "DefaultEnvironment=\"XXX_USER=bar\""; 38 services.journald.extraConfig = "Storage=volatile"; 39 test-support.displayManager.auto.user = "alice"; ··· 90 touch "$HOME/user_conf_read" 91 fi 92 ''; 93 }; 94 95 environment.etc."systemd/system-preset/10-testservice.preset".text = ''
+13
pkgs/applications/editors/vim/plugins/overrides.nix
··· 133 # search-and-replace.nvim dependencies 134 fd, 135 sad, 136 }: 137 self: super: 138 let ··· 1125 fixupPhase = '' 1126 patchShebangs $(find $out/bin/ -type f -not -name credo-language-server) 1127 ''; 1128 }; 1129 1130 executor-nvim = super.executor-nvim.overrideAttrs {
··· 133 # search-and-replace.nvim dependencies 134 fd, 135 sad, 136 + # ethersync vim plugin 137 + ethersync, 138 }: 139 self: super: 140 let ··· 1127 fixupPhase = '' 1128 patchShebangs $(find $out/bin/ -type f -not -name credo-language-server) 1129 ''; 1130 + }; 1131 + 1132 + ethersync = buildVimPlugin rec { 1133 + inherit (ethersync) 1134 + pname 1135 + version 1136 + src 1137 + meta 1138 + ; 1139 + 1140 + sourceRoot = "${src.name}/nvim-plugin"; 1141 }; 1142 1143 executor-nvim = super.executor-nvim.overrideAttrs {
+27 -27
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 18 "vendorHash": null 19 }, 20 "acme": { 21 - "hash": "sha256-GHS8CRu89cd6RMMbEB8ct27w2w4lWdKTbvoihaVpexQ=", 22 "homepage": "https://registry.terraform.io/providers/vancluever/acme", 23 "owner": "vancluever", 24 "repo": "terraform-provider-acme", 25 - "rev": "v2.34.0", 26 "spdx": "MPL-2.0", 27 - "vendorHash": "sha256-tGfA5LMXECGsu5BIIeMb1+ze7T84Gyrn4h+IzcI79OA=" 28 }, 29 "age": { 30 "hash": "sha256-bJrzjvkrCX93bNqCA+FdRibHnAw6cb61StqtwUY5ok4=", ··· 54 "vendorHash": "sha256-sf6gCPsKnBVjMsCw7ZA4BKt9GAGtAcgU7vRZN8xzN9Q=" 55 }, 56 "alicloud": { 57 - "hash": "sha256-HXrE/EsxTPH6lO2jpxz9Mkr6/eSodfLK9Akpv6wGUK0=", 58 "homepage": "https://registry.terraform.io/providers/aliyun/alicloud", 59 "owner": "aliyun", 60 "repo": "terraform-provider-alicloud", 61 - "rev": "v1.253.0", 62 "spdx": "MPL-2.0", 63 "vendorHash": "sha256-Ww4l3ffnx0CB+wnQfaiHI+25JtnNsGaTCsmXfd54R4g=" 64 }, ··· 516 "vendorHash": "sha256-G325isVj6JKs58i59V/A51vE8mzgxk/1EqSVvb6TiH4=" 517 }, 518 "google": { 519 - "hash": "sha256-la+jN1muZqAqgR2emDhB71L01gAVtH60OLZ199h6Cq0=", 520 "homepage": "https://registry.terraform.io/providers/hashicorp/google", 521 "owner": "hashicorp", 522 "repo": "terraform-provider-google", 523 - "rev": "v6.44.0", 524 "spdx": "MPL-2.0", 525 - "vendorHash": "sha256-s5tShmcGeY/PivF2soP0PWZp9MlqYt9yvsjrNArqYGk=" 526 }, 527 "google-beta": { 528 "hash": "sha256-O+rAH2VzDEr+uwyAAg74oS/HeytPLOm+1LTC7aswhIA=", ··· 696 "vendorHash": "sha256-ctd9V5EXL0c9b4aJ47nfjhqCMTewL55IkjkQ39ShoUk=" 697 }, 698 "kafka": { 699 - "hash": "sha256-NiAbUZ+ZMRLXm/WLrfj0ZjbPft4jZhdwLBhFIE4PjeI=", 700 "homepage": "https://registry.terraform.io/providers/Mongey/kafka", 701 "owner": "Mongey", 702 "repo": "terraform-provider-kafka", 703 - "rev": "v0.10.3", 704 "spdx": "MIT", 705 - "vendorHash": "sha256-57V/0JIsq+pqbWmg3iZ0s8t8iD2Xtipy08I/+ZJCkNc=" 706 }, 707 "kafka-connect": { 708 "hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=", ··· 831 "vendorHash": "sha256-oipY2hwgRrntCxxHPyH06e8p+0fKfAQwhh2iBI4RGHQ=" 832 }, 833 "minio": { 834 - "hash": "sha256-DRWzgVp01qTvyf30GgxWx9/RvjAfoNu3SXZQVQ1jYa0=", 835 "homepage": "https://registry.terraform.io/providers/aminueza/minio", 836 "owner": "aminueza", 837 "repo": "terraform-provider-minio", 838 - "rev": "v3.6.1", 839 "spdx": "AGPL-3.0", 840 "vendorHash": "sha256-QWBzQXx/dzWZr9dn3LHy8RIvZL1EA9xYqi7Ppzvju7g=" 841 }, 842 "mongodbatlas": { 843 - "hash": "sha256-ZmQw87cBWt8bfLTkeEAopVBEoLCvyAXb001mWK6SnZE=", 844 "homepage": "https://registry.terraform.io/providers/mongodb/mongodbatlas", 845 "owner": "mongodb", 846 "repo": "terraform-provider-mongodbatlas", 847 - "rev": "v1.38.0", 848 "spdx": "MPL-2.0", 849 - "vendorHash": "sha256-r874TWc0OCXMin2VYHmOSg4sBjIgCxJUiykw+A7oMsk=" 850 }, 851 "namecheap": { 852 "hash": "sha256-fHH9sHI1mqQ9q9nX9DHJ0qfEfmDB4/2uzyVvUuIAF18=", ··· 1120 "vendorHash": "sha256-xo0alLK3fccbKRG5bN1G7orDsP47I3ySAzpZ9O0f2Fg=" 1121 }, 1122 "rootly": { 1123 - "hash": "sha256-H9+9HPLmhis7UDq4Jizh+0d+tdj0PT57uv/mjymmizQ=", 1124 "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", 1125 "owner": "rootlyhq", 1126 "repo": "terraform-provider-rootly", 1127 - "rev": "v3.4.0", 1128 "spdx": "MPL-2.0", 1129 - "vendorHash": "sha256-EZbYkyeQdroVJj3a7T7MICU4MSimB+ZqI2Yg9PNUcV0=" 1130 }, 1131 "routeros": { 1132 "hash": "sha256-ciQsBvpX6gWnDPt9O1SGrVVgNCvAHBPCaLfVlPxrSAY=", ··· 1327 "vendorHash": "sha256-V0dK5G3zheyyqexBud+9Hg9ExYI/9X1wuYx+lEn6pVg=" 1328 }, 1329 "temporalcloud": { 1330 - "hash": "sha256-FTvTp2Mf8uz0e+y7AprAxgMEllGJFbWiPCzDZ8jzdrc=", 1331 "homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud", 1332 "owner": "temporalio", 1333 "repo": "terraform-provider-temporalcloud", 1334 - "rev": "v0.9.0", 1335 "spdx": "MPL-2.0", 1336 "vendorHash": "sha256-PVN3oPT3cxsnWH03twbPSIIERGHCp3XAmcqrQAOULZ4=" 1337 }, 1338 "tencentcloud": { 1339 - "hash": "sha256-oHvmCNgGguKdu/LbTyRG/vl9+xGan1vR6T9Ej5MX9l4=", 1340 "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", 1341 "owner": "tencentcloudstack", 1342 "repo": "terraform-provider-tencentcloud", 1343 - "rev": "v1.82.11", 1344 "spdx": "MPL-2.0", 1345 "vendorHash": null 1346 }, 1347 "tfe": { 1348 - "hash": "sha256-gT5KOJZJG8cZs1Dcn31bfKLC8zvkG62tn4sZuH9ieGk=", 1349 "homepage": "https://registry.terraform.io/providers/hashicorp/tfe", 1350 "owner": "hashicorp", 1351 "repo": "terraform-provider-tfe", 1352 - "rev": "v0.68.0", 1353 "spdx": "MPL-2.0", 1354 "vendorHash": "sha256-tf78FT9JD5IVswgDB3Yug1NZQvo8NDqjPEAfF3gg93w=" 1355 }, ··· 1391 "vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk=" 1392 }, 1393 "turbot": { 1394 - "hash": "sha256-B3zUTsxFnyhIsxI9K07V+gP/C22nMm6bonEpQIPCMp0=", 1395 "homepage": "https://registry.terraform.io/providers/turbot/turbot", 1396 "owner": "turbot", 1397 "repo": "terraform-provider-turbot", 1398 - "rev": "v1.12.3", 1399 "spdx": "MPL-2.0", 1400 "vendorHash": null 1401 },
··· 18 "vendorHash": null 19 }, 20 "acme": { 21 + "hash": "sha256-69oNqBonJ22Jf27NYGpY31NVwdv8YDwxUyRyMeln8LY=", 22 "homepage": "https://registry.terraform.io/providers/vancluever/acme", 23 "owner": "vancluever", 24 "repo": "terraform-provider-acme", 25 + "rev": "v2.35.0", 26 "spdx": "MPL-2.0", 27 + "vendorHash": "sha256-7SXAAJwIkdt96lWhkKKmbP6Fqkcn8puPUrTy1pXnI1c=" 28 }, 29 "age": { 30 "hash": "sha256-bJrzjvkrCX93bNqCA+FdRibHnAw6cb61StqtwUY5ok4=", ··· 54 "vendorHash": "sha256-sf6gCPsKnBVjMsCw7ZA4BKt9GAGtAcgU7vRZN8xzN9Q=" 55 }, 56 "alicloud": { 57 + "hash": "sha256-OXLqn7D4Len8EYxwl/coKeh+bBAx4uVzfgiNFJ1Tcrg=", 58 "homepage": "https://registry.terraform.io/providers/aliyun/alicloud", 59 "owner": "aliyun", 60 "repo": "terraform-provider-alicloud", 61 + "rev": "v1.254.0", 62 "spdx": "MPL-2.0", 63 "vendorHash": "sha256-Ww4l3ffnx0CB+wnQfaiHI+25JtnNsGaTCsmXfd54R4g=" 64 }, ··· 516 "vendorHash": "sha256-G325isVj6JKs58i59V/A51vE8mzgxk/1EqSVvb6TiH4=" 517 }, 518 "google": { 519 + "hash": "sha256-YwSl33ST8kvnVg5hr7PCSfEO0xRDRVvTEU3KEMfiIIg=", 520 "homepage": "https://registry.terraform.io/providers/hashicorp/google", 521 "owner": "hashicorp", 522 "repo": "terraform-provider-google", 523 + "rev": "v6.45.0", 524 "spdx": "MPL-2.0", 525 + "vendorHash": "sha256-n6UUSCQt3mJESEfqVHX4sfr1XqOXu+u7Qejjps6RmBs=" 526 }, 527 "google-beta": { 528 "hash": "sha256-O+rAH2VzDEr+uwyAAg74oS/HeytPLOm+1LTC7aswhIA=", ··· 696 "vendorHash": "sha256-ctd9V5EXL0c9b4aJ47nfjhqCMTewL55IkjkQ39ShoUk=" 697 }, 698 "kafka": { 699 + "hash": "sha256-Onyy+KgmgLYk3J1P4rhHDJ7uEb+9jbywkY7lbfdQ2Vs=", 700 "homepage": "https://registry.terraform.io/providers/Mongey/kafka", 701 "owner": "Mongey", 702 "repo": "terraform-provider-kafka", 703 + "rev": "v0.12.0", 704 "spdx": "MIT", 705 + "vendorHash": "sha256-kkaNv+c6IGAW+amSSycjBmUCFXBeQrcF5Jmvtl8bXAE=" 706 }, 707 "kafka-connect": { 708 "hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=", ··· 831 "vendorHash": "sha256-oipY2hwgRrntCxxHPyH06e8p+0fKfAQwhh2iBI4RGHQ=" 832 }, 833 "minio": { 834 + "hash": "sha256-hvttrw+7wqcCRyYdGhQvRvP1oDbAGmtR5UpcGx8LMgk=", 835 "homepage": "https://registry.terraform.io/providers/aminueza/minio", 836 "owner": "aminueza", 837 "repo": "terraform-provider-minio", 838 + "rev": "v3.6.2", 839 "spdx": "AGPL-3.0", 840 "vendorHash": "sha256-QWBzQXx/dzWZr9dn3LHy8RIvZL1EA9xYqi7Ppzvju7g=" 841 }, 842 "mongodbatlas": { 843 + "hash": "sha256-Lv0LwvQZTtZ2ZaNDJSQFVRDFtM23mnihV4XOBIxL5Bc=", 844 "homepage": "https://registry.terraform.io/providers/mongodb/mongodbatlas", 845 "owner": "mongodb", 846 "repo": "terraform-provider-mongodbatlas", 847 + "rev": "v1.39.0", 848 "spdx": "MPL-2.0", 849 + "vendorHash": "sha256-6ZxrQGYX15TpCTQ/Oxe4NL/XlgdqmWBm53JEuMv8KQg=" 850 }, 851 "namecheap": { 852 "hash": "sha256-fHH9sHI1mqQ9q9nX9DHJ0qfEfmDB4/2uzyVvUuIAF18=", ··· 1120 "vendorHash": "sha256-xo0alLK3fccbKRG5bN1G7orDsP47I3ySAzpZ9O0f2Fg=" 1121 }, 1122 "rootly": { 1123 + "hash": "sha256-Lpysy/BQHYEWhTNcLvBY6C6o1G/PhKzxPe4qUHhPWmM=", 1124 "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", 1125 "owner": "rootlyhq", 1126 "repo": "terraform-provider-rootly", 1127 + "rev": "v3.5.1", 1128 "spdx": "MPL-2.0", 1129 + "vendorHash": "sha256-75GQmp/ybD+VugrrB8qTbP3OPHy3eyBGe5u7CM7CRcc=" 1130 }, 1131 "routeros": { 1132 "hash": "sha256-ciQsBvpX6gWnDPt9O1SGrVVgNCvAHBPCaLfVlPxrSAY=", ··· 1327 "vendorHash": "sha256-V0dK5G3zheyyqexBud+9Hg9ExYI/9X1wuYx+lEn6pVg=" 1328 }, 1329 "temporalcloud": { 1330 + "hash": "sha256-r5bkK+7phHxxImAQEgwekRiUuLxNzVGYSsb5OH8cx5c=", 1331 "homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud", 1332 "owner": "temporalio", 1333 "repo": "terraform-provider-temporalcloud", 1334 + "rev": "v0.9.1", 1335 "spdx": "MPL-2.0", 1336 "vendorHash": "sha256-PVN3oPT3cxsnWH03twbPSIIERGHCp3XAmcqrQAOULZ4=" 1337 }, 1338 "tencentcloud": { 1339 + "hash": "sha256-0sTuheQh9mpwGPsqXLH3dcLvTQcy7xti+y1k1eflL2k=", 1340 "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", 1341 "owner": "tencentcloudstack", 1342 "repo": "terraform-provider-tencentcloud", 1343 + "rev": "v1.82.13", 1344 "spdx": "MPL-2.0", 1345 "vendorHash": null 1346 }, 1347 "tfe": { 1348 + "hash": "sha256-Gut7HzjBZIrv9PLNBkSwnGfBKymlJ07GTFKtwiLIGSg=", 1349 "homepage": "https://registry.terraform.io/providers/hashicorp/tfe", 1350 "owner": "hashicorp", 1351 "repo": "terraform-provider-tfe", 1352 + "rev": "v0.68.1", 1353 "spdx": "MPL-2.0", 1354 "vendorHash": "sha256-tf78FT9JD5IVswgDB3Yug1NZQvo8NDqjPEAfF3gg93w=" 1355 }, ··· 1391 "vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk=" 1392 }, 1393 "turbot": { 1394 + "hash": "sha256-ZcJMWeKp39wv/T8Kln052PHr4vGUYTDbuGAv9nb8U1c=", 1395 "homepage": "https://registry.terraform.io/providers/turbot/turbot", 1396 "owner": "turbot", 1397 "repo": "terraform-provider-turbot", 1398 + "rev": "v1.12.4", 1399 "spdx": "MPL-2.0", 1400 "vendorHash": null 1401 },
+2 -2
pkgs/by-name/ad/ada/package.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ada"; 10 - version = "3.2.6"; 11 12 src = fetchFromGitHub { 13 owner = "ada-url"; 14 repo = "ada"; 15 tag = "v${version}"; 16 - hash = "sha256-h5/D/Msp5Zg58YFQ/viQVYlMQSXQTWU2YHkSPvtQwyA="; 17 }; 18 19 nativeBuildInputs = [ cmake ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ada"; 10 + version = "3.2.7"; 11 12 src = fetchFromGitHub { 13 owner = "ada-url"; 14 repo = "ada"; 15 tag = "v${version}"; 16 + hash = "sha256-IDJgrjmIqhnIZuzBAckowpmhRypb1a1NB1P5YZz4E1A="; 17 }; 18 19 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/br/brev-cli/package.nix
··· 6 7 buildGoModule rec { 8 pname = "brev-cli"; 9 - version = "0.6.311"; 10 11 src = fetchFromGitHub { 12 owner = "brevdev"; 13 repo = "brev-cli"; 14 rev = "v${version}"; 15 - sha256 = "sha256-XKXIDnqAmWUDiwjvNV/mmGyxkScuz3YJ2DpMcRhwLKU="; 16 }; 17 18 vendorHash = "sha256-7MXZVdpsPHfHk8hNZM2CT0FW8gTKt3oUap7CTVYMNfI=";
··· 6 7 buildGoModule rec { 8 pname = "brev-cli"; 9 + version = "0.6.312"; 10 11 src = fetchFromGitHub { 12 owner = "brevdev"; 13 repo = "brev-cli"; 14 rev = "v${version}"; 15 + sha256 = "sha256-IeX+SvNcz0S/gdInVM8fwA7TEDTMoJO8rSwCqK2rKoE="; 16 }; 17 18 vendorHash = "sha256-7MXZVdpsPHfHk8hNZM2CT0FW8gTKt3oUap7CTVYMNfI=";
+3 -3
pkgs/by-name/ca/cargo-shear/package.nix
··· 6 cargo-shear, 7 }: 8 let 9 - version = "1.4.0"; 10 in 11 rustPlatform.buildRustPackage { 12 pname = "cargo-shear"; ··· 16 owner = "Boshen"; 17 repo = "cargo-shear"; 18 rev = "v${version}"; 19 - hash = "sha256-UJbYzyVEg1FxoebBVURwbugjAeE93dXM47lXUoonMLM="; 20 }; 21 22 - cargoHash = "sha256-ynxJbNrzuDlqa5elavO+faFDt90CoZsPoVODW8NlFcY="; 23 24 # https://github.com/Boshen/cargo-shear/blob/a0535415a3ea94c86642f39f343f91af5cdc3829/src/lib.rs#L20-L23 25 SHEAR_VERSION = version;
··· 6 cargo-shear, 7 }: 8 let 9 + version = "1.4.1"; 10 in 11 rustPlatform.buildRustPackage { 12 pname = "cargo-shear"; ··· 16 owner = "Boshen"; 17 repo = "cargo-shear"; 18 rev = "v${version}"; 19 + hash = "sha256-Ast944OrFyC6jHsL+aLp9zUK0hX7Xv+0EV1bH/PjDGA="; 20 }; 21 22 + cargoHash = "sha256-NSBe42AGujyh3CSdJ9ON14IA9U63qNly96VMNbU+I84="; 23 24 # https://github.com/Boshen/cargo-shear/blob/a0535415a3ea94c86642f39f343f91af5cdc3829/src/lib.rs#L20-L23 25 SHEAR_VERSION = version;
+2 -2
pkgs/by-name/cd/cdncheck/package.nix
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 - version = "1.1.28"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 - hash = "sha256-DifV+AvVzC8wm3yjfWorAk8E0a7++Aq38UXxBQbHAPM="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 + version = "1.1.29"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 + hash = "sha256-+R6IRMdkLVJ6rtkCQUMDc5scNWlv0rMa0urHhfiEwro="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
+2 -2
pkgs/by-name/ch/chatbox/package.nix
··· 6 }: 7 let 8 pname = "chatbox"; 9 - version = "1.15.0"; 10 11 src = fetchurl { 12 url = "https://download.chatboxai.app/releases/Chatbox-${version}-x86_64.AppImage"; 13 - hash = "sha256-TtYKOCnMuStoPSQfwXfLFli+qv2NVgiXJPCYylCgs6A="; 14 }; 15 16 appimageContents = appimageTools.extract { inherit pname version src; };
··· 6 }: 7 let 8 pname = "chatbox"; 9 + version = "1.15.2"; 10 11 src = fetchurl { 12 url = "https://download.chatboxai.app/releases/Chatbox-${version}-x86_64.AppImage"; 13 + hash = "sha256-KxL073BIfZfjFndwtkDNXwlt1xny76BMV9CQF3x7ATQ="; 14 }; 15 16 appimageContents = appimageTools.extract { inherit pname version src; };
+3 -3
pkgs/by-name/cn/cnspec/package.nix
··· 6 7 buildGoModule rec { 8 pname = "cnspec"; 9 - version = "11.63.0"; 10 11 src = fetchFromGitHub { 12 owner = "mondoohq"; 13 repo = "cnspec"; 14 tag = "v${version}"; 15 - hash = "sha256-o5JqWPI4S1ic/L1A/AXl32g3RTmcxoR+Cmx2dxJoorA="; 16 }; 17 18 proxyVendor = true; 19 20 - vendorHash = "sha256-FOT30kp15TRvnziBis3n9CvBfzgUEKCLAU+gCSH3vA8="; 21 22 subPackages = [ "apps/cnspec" ]; 23
··· 6 7 buildGoModule rec { 8 pname = "cnspec"; 9 + version = "11.64.0"; 10 11 src = fetchFromGitHub { 12 owner = "mondoohq"; 13 repo = "cnspec"; 14 tag = "v${version}"; 15 + hash = "sha256-AJ7aw21UyvOGCLEnhTHPklyDWkBAnK/Vhvvg4UDOoH4="; 16 }; 17 18 proxyVendor = true; 19 20 + vendorHash = "sha256-nmHs5ZHULENCyW+3giyPTO+pzbnGgGwFuVqgIfuCQi4="; 21 22 subPackages = [ "apps/cnspec" ]; 23
+4 -4
pkgs/by-name/cv/cve-prioritizer/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "cve-prioritizer"; 9 - version = "1.9.0"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "TURROKS"; 14 repo = "CVE_Prioritizer"; 15 - rev = "refs/tags/v${version}"; 16 - hash = "sha256-FJN/AM4NFctMszzIBdvww7OtC7fimb++tbtRZ77ll5c="; 17 }; 18 19 build-system = with python3.pkgs; [ setuptools ]; ··· 34 meta = { 35 description = "Vulnerability patching with CVSS, EPSS, and CISA's Known Exploited Vulnerabilities"; 36 homepage = "https://github.com/TURROKS/CVE_Prioritizer"; 37 - changelog = "https://github.com/TURROKS/CVE_Prioritizer/releases/tag/v${version}"; 38 license = lib.licenses.bsd3; 39 maintainers = with lib.maintainers; [ fab ]; 40 mainProgram = "cve-prioritizer";
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "cve-prioritizer"; 9 + version = "1.10.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "TURROKS"; 14 repo = "CVE_Prioritizer"; 15 + tag = "v${version}"; 16 + hash = "sha256-Yy5jVpxb3e2lCpxMaxDdXBGh8by5lmGi+G+kJguA3AA="; 17 }; 18 19 build-system = with python3.pkgs; [ setuptools ]; ··· 34 meta = { 35 description = "Vulnerability patching with CVSS, EPSS, and CISA's Known Exploited Vulnerabilities"; 36 homepage = "https://github.com/TURROKS/CVE_Prioritizer"; 37 + changelog = "https://github.com/TURROKS/CVE_Prioritizer/releases/tag/${src.tag}"; 38 license = lib.licenses.bsd3; 39 maintainers = with lib.maintainers; [ fab ]; 40 mainProgram = "cve-prioritizer";
+8 -8
pkgs/by-name/el/electron-fiddle/package.nix
··· 1 { 2 buildFHSEnv, 3 - electron_33, 4 fetchFromGitHub, 5 fetchYarnDeps, 6 fetchurl, 7 git, 8 lib, 9 makeDesktopItem, 10 - nodejs_20, 11 stdenvNoCC, 12 util-linux, 13 yarnBuildHook, ··· 17 18 let 19 pname = "electron-fiddle"; 20 - version = "0.36.5"; 21 - electron = electron_33; 22 - nodejs = nodejs_20; 23 24 src = fetchFromGitHub { 25 owner = "electron"; 26 repo = "fiddle"; 27 - tag = "v${version}"; 28 - hash = "sha256-Fo7rXnufJ26WijnplWswdeCGJitkvTDboOggUfrz1Hw="; 29 }; 30 31 # As of https://github.com/electron/fiddle/pull/1316 this is fetched 32 # from the network and has no stable hash. Grab an old version from ··· 42 43 offlineCache = fetchYarnDeps { 44 yarnLock = "${src}/yarn.lock"; 45 - hash = "sha256-eZ/g2cP6M0zWhF14go0sIC+UuzTo9Gl4KsPBGzJU3FQ="; 46 }; 47 48 nativeBuildInputs = [
··· 1 { 2 buildFHSEnv, 3 + electron_36, 4 fetchFromGitHub, 5 fetchYarnDeps, 6 fetchurl, 7 git, 8 lib, 9 makeDesktopItem, 10 + nodejs, 11 stdenvNoCC, 12 util-linux, 13 yarnBuildHook, ··· 17 18 let 19 pname = "electron-fiddle"; 20 + version = "0.36.5-unstable-2025-07-17"; 21 22 src = fetchFromGitHub { 23 owner = "electron"; 24 repo = "fiddle"; 25 + rev = "0f3cd3007a336562a3c49ce95469022e6a729121"; # a revision that uses electron_36 instead of electron_33 26 + hash = "sha256-1q8bDpEPrQNbngrGZj6/AQFFo06ED6uJ4Z/XVg6KNXw="; 27 }; 28 + 29 + electron = electron_36; 30 31 # As of https://github.com/electron/fiddle/pull/1316 this is fetched 32 # from the network and has no stable hash. Grab an old version from ··· 42 43 offlineCache = fetchYarnDeps { 44 yarnLock = "${src}/yarn.lock"; 45 + hash = "sha256-n6rzi4VohVaX+IIE1NITDsxXGyw0Z6Fx1WJb15YT9Sg="; 46 }; 47 48 nativeBuildInputs = [
+4 -3
pkgs/by-name/et/ethersync/package.nix
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "ethersync"; 11 - version = "0.6.0"; 12 13 src = fetchFromGitHub { 14 owner = "ethersync"; 15 repo = "ethersync"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-dHV4+WxNdEvRZK8WNK0qp9f43Y9oSUtlXrq/mI0yWls="; 18 }; 19 20 sourceRoot = "${finalAttrs.src.name}/daemon"; 21 22 - cargoHash = "sha256-uKtJp4RD0YbOmtzbxebpYQxlBmP+5k88d+76hT4cTI8="; 23 24 nativeInstallCheckInputs = [ versionCheckHook ]; 25 versionCheckProgramArg = "--version"; ··· 33 downloadPage = "https://github.com/ethersync/ethersync"; 34 changelog = "https://github.com/ethersync/ethersync/blob/${finalAttrs.src.tag}/CHANGELOG.md"; 35 license = lib.licenses.agpl3Plus; 36 maintainers = with lib.maintainers; [ 37 prince213 38 ethancedwards8
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "ethersync"; 11 + version = "0.7.0"; 12 13 src = fetchFromGitHub { 14 owner = "ethersync"; 15 repo = "ethersync"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-Swh8C8FMjPdIFpHOsNb3W9W7JAZGzPXHXTwwnr1gFok="; 18 }; 19 20 sourceRoot = "${finalAttrs.src.name}/daemon"; 21 22 + cargoHash = "sha256-ZgbxaEtsaBQLl9PJbo1O2wA3OxEfPKRl3KkFvR4c97Q="; 23 24 nativeInstallCheckInputs = [ versionCheckHook ]; 25 versionCheckProgramArg = "--version"; ··· 33 downloadPage = "https://github.com/ethersync/ethersync"; 34 changelog = "https://github.com/ethersync/ethersync/blob/${finalAttrs.src.tag}/CHANGELOG.md"; 35 license = lib.licenses.agpl3Plus; 36 + teams = [ lib.teams.ngi ]; 37 maintainers = with lib.maintainers; [ 38 prince213 39 ethancedwards8
+3 -3
pkgs/by-name/eu/euphonica/package.nix
··· 25 26 stdenv.mkDerivation (finalAttrs: { 27 pname = "euphonica"; 28 - version = "0.94.1-alpha"; 29 30 src = fetchFromGitHub { 31 owner = "htkhiem"; 32 repo = "euphonica"; 33 tag = "v${finalAttrs.version}"; 34 - hash = "sha256-1d2GZSTr0HnVC7D6T7LFeL8kXfwGBhjqZ3lC4ZjpOtM="; 35 fetchSubmodules = true; 36 }; 37 38 cargoDeps = rustPlatform.fetchCargoVendor { 39 inherit (finalAttrs) pname version src; 40 - hash = "sha256-vb9THfSTN27rOfIlpCPkAJm+eLnh+RptOYWLS8hGDpw="; 41 }; 42 43 nativeBuildInputs = [
··· 25 26 stdenv.mkDerivation (finalAttrs: { 27 pname = "euphonica"; 28 + version = "0.96.1-beta"; 29 30 src = fetchFromGitHub { 31 owner = "htkhiem"; 32 repo = "euphonica"; 33 tag = "v${finalAttrs.version}"; 34 + hash = "sha256-MMrTabKE+zqVSmbjOg0NCsI47eSu1c73RnsPDgCbhCo="; 35 fetchSubmodules = true; 36 }; 37 38 cargoDeps = rustPlatform.fetchCargoVendor { 39 inherit (finalAttrs) pname version src; 40 + hash = "sha256-zFGFmiPozfBSIYxCu4fHynb2eh9emfVPtj3grPAoZeA="; 41 }; 42 43 nativeBuildInputs = [
+3 -3
pkgs/by-name/fi/findomain/package.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "findomain"; 12 - version = "9.0.4"; 13 14 src = fetchFromGitHub { 15 owner = "findomain"; 16 repo = "findomain"; 17 tag = version; 18 - hash = "sha256-5jbKDMULig6j3D5KEQQrHWtsc59x0Tj6n/7kwK/8IME="; 19 }; 20 21 - cargoHash = "sha256-4+nRQ8HL4dQMCgeSOrgkaRj0E4HPAC3Nm82AEr1KWJo="; 22 23 nativeBuildInputs = [ 24 installShellFiles
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "findomain"; 12 + version = "10.0.1"; 13 14 src = fetchFromGitHub { 15 owner = "findomain"; 16 repo = "findomain"; 17 tag = version; 18 + hash = "sha256-qMSVj+qhrx1LPuXWXKzo0v4yirNW2x/o/blNkSVU3Tg="; 19 }; 20 21 + cargoHash = "sha256-uYhCTjVzkW8menf67pnZfYCMIcNZadoGJvtDmsDDxP8="; 22 23 nativeBuildInputs = [ 24 installShellFiles
+2 -2
pkgs/by-name/fw/fwup/package.nix
··· 21 22 stdenv.mkDerivation rec { 23 pname = "fwup"; 24 - version = "1.13.1"; 25 26 src = fetchFromGitHub { 27 owner = "fhunleth"; 28 repo = "fwup"; 29 rev = "v${version}"; 30 - sha256 = "sha256-lf8NCF+K47V55pUC4uNzCh5D454OQl5VruGfC6X5mJw="; 31 }; 32 33 nativeBuildInputs = [
··· 21 22 stdenv.mkDerivation rec { 23 pname = "fwup"; 24 + version = "1.13.2"; 25 26 src = fetchFromGitHub { 27 owner = "fhunleth"; 28 repo = "fwup"; 29 rev = "v${version}"; 30 + sha256 = "sha256-s9M734Ohf8kItoOdaxewk4Enbrm2wsT0M4Ak9+q3KA8="; 31 }; 32 33 nativeBuildInputs = [
+3 -3
pkgs/by-name/gr/gruvbox-gtk-theme/package.nix
··· 68 stdenvNoCC.mkDerivation 69 { 70 inherit pname; 71 - version = "0-unstable-2025-04-24"; 72 73 src = fetchFromGitHub { 74 owner = "Fausto-Korpsvart"; 75 repo = "Gruvbox-GTK-Theme"; 76 - rev = "fbced4ba03975dadd1d74d6b73cccdcbbd5e8b90"; 77 - hash = "sha256-zhY3uwvtHNKNrdWiD5Le/AMz1lgV39K/RNhFGnIMpzg="; 78 }; 79 80 propagatedUserEnvPkgs = [ gtk-engine-murrine ];
··· 68 stdenvNoCC.mkDerivation 69 { 70 inherit pname; 71 + version = "0-unstable-2025-07-21"; 72 73 src = fetchFromGitHub { 74 owner = "Fausto-Korpsvart"; 75 repo = "Gruvbox-GTK-Theme"; 76 + rev = "b1cfcc8a3b461f227c8a89dee17a80ed8f6656f4"; 77 + hash = "sha256-QFXaAtgH30aP1+/rNobntTAMfwh+AAb26FyZgElVdC4="; 78 }; 79 80 propagatedUserEnvPkgs = [ gtk-engine-murrine ];
+20 -5
pkgs/by-name/ig/igir/package.nix
··· 7 # at lib/node_modules/igir/node_modules/7zip-bin/linux/x64/7za 8 autoPatchelfHook, 9 stdenv, 10 }: 11 12 buildNpmPackage rec { 13 pname = "igir"; 14 - version = "2.11.0"; 15 16 src = fetchFromGitHub { 17 owner = "emmercm"; 18 repo = "igir"; 19 rev = "v${version}"; 20 - hash = "sha256-NG0ZP8LOm7fZVecErTuLOfbp1yvXwHnwPkWTBzUJXWE="; 21 }; 22 23 - npmDepsHash = "sha256-ADIEzr6PkGaJz27GKSVyTsrbz5zbud7BUb+OXPtP1Vo="; 24 25 # I have no clue why I have to do this 26 postPatch = '' ··· 29 30 nativeBuildInputs = [ autoPatchelfHook ]; 31 32 - buildInputs = [ (lib.getLib stdenv.cc.cc) ]; 33 34 # from lib/node_modules/igir/node_modules/@node-rs/crc32-linux-x64-musl/crc32.linux-x64-musl.node 35 # Irrelevant to our use ··· 41 homepage = "https://igir.io"; 42 changelog = "https://github.com/emmercm/igir/releases/tag/${src.rev}"; 43 license = licenses.gpl3Plus; 44 - maintainers = with maintainers; [ ]; 45 platforms = platforms.linux; 46 }; 47 }
··· 7 # at lib/node_modules/igir/node_modules/7zip-bin/linux/x64/7za 8 autoPatchelfHook, 9 stdenv, 10 + 11 + libusb1, 12 + libuv, 13 + libz, 14 + lz4, 15 + sdl2-compat, 16 + systemd, 17 }: 18 19 buildNpmPackage rec { 20 pname = "igir"; 21 + version = "4.1.1"; 22 23 src = fetchFromGitHub { 24 owner = "emmercm"; 25 repo = "igir"; 26 rev = "v${version}"; 27 + hash = "sha256-f/3XIBFMxSPwJpfZTBhuznU/psChfnQEwZASOoH4Ij0="; 28 }; 29 30 + npmDepsHash = "sha256-qPyS2F5jt1C5SZxvRuyPX4+TkYZKTffcekanWtH82EY="; 31 32 # I have no clue why I have to do this 33 postPatch = '' ··· 36 37 nativeBuildInputs = [ autoPatchelfHook ]; 38 39 + buildInputs = [ 40 + (lib.getLib stdenv.cc.cc) 41 + libusb1 42 + libuv 43 + libz 44 + lz4 45 + sdl2-compat 46 + systemd 47 + ]; 48 49 # from lib/node_modules/igir/node_modules/@node-rs/crc32-linux-x64-musl/crc32.linux-x64-musl.node 50 # Irrelevant to our use ··· 56 homepage = "https://igir.io"; 57 changelog = "https://github.com/emmercm/igir/releases/tag/${src.rev}"; 58 license = licenses.gpl3Plus; 59 + maintainers = with maintainers; [ mjm ]; 60 platforms = platforms.linux; 61 }; 62 }
+2 -2
pkgs/by-name/jb/jbrowse/package.nix
··· 6 7 let 8 pname = "jbrowse"; 9 - version = "3.6.3"; 10 11 src = fetchurl { 12 url = "https://github.com/GMOD/jbrowse-components/releases/download/v${version}/jbrowse-desktop-v${version}-linux.AppImage"; 13 - sha256 = "sha256-J+9SE7yWQanKjweLKWPwStOJOg6SxoIoC5jtl+ekEtI="; 14 }; 15 16 appimageContents = appimageTools.extractType2 {
··· 6 7 let 8 pname = "jbrowse"; 9 + version = "3.6.4"; 10 11 src = fetchurl { 12 url = "https://github.com/GMOD/jbrowse-components/releases/download/v${version}/jbrowse-desktop-v${version}-linux.AppImage"; 13 + sha256 = "sha256-oSxSW6kZ68iQBdR4Uxd9yiU2S/8bLamXje9FDgahuv4="; 14 }; 15 16 appimageContents = appimageTools.extractType2 {
+3 -3
pkgs/by-name/kl/klog-rs/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "klog-rs"; 10 - version = "0.4.2"; 11 12 src = fetchFromGitHub { 13 owner = "tobifroe"; 14 repo = "klog"; 15 rev = version; 16 - hash = "sha256-X7VUbn2DQx4Wo526COGAp0IFPPhh1vObxP/b6oYFWG4="; 17 }; 18 19 - cargoHash = "sha256-veE992wYv8SwAbvaqe3nVymxTbaMYEDWtLnisnyNOn4="; 20 checkFlags = [ 21 # this integration test depends on a running kubernetes cluster 22 "--skip=k8s::tests::test_get_pod_list"
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "klog-rs"; 10 + version = "0.5.0"; 11 12 src = fetchFromGitHub { 13 owner = "tobifroe"; 14 repo = "klog"; 15 rev = version; 16 + hash = "sha256-dPFxjSq5P7MyXUAugZqPEYRJ2VcFuVs774f3AKdH7kk="; 17 }; 18 19 + cargoHash = "sha256-9dJ2MCAd6DhNaqgUtuBifMbTTZoCoLNLjyR9b0fwfcc="; 20 checkFlags = [ 21 # this integration test depends on a running kubernetes cluster 22 "--skip=k8s::tests::test_get_pod_list"
+2 -2
pkgs/by-name/lm/lms/package.nix
··· 22 23 stdenv.mkDerivation rec { 24 pname = "lms"; 25 - version = "3.67.0"; 26 27 src = fetchFromGitHub { 28 owner = "epoupon"; 29 repo = "lms"; 30 rev = "v${version}"; 31 - hash = "sha256-jmdAZEtMIl2oLeNzgyceguCenPK/K6NJw5Yzv3T4pJs="; 32 }; 33 34 strictDeps = true;
··· 22 23 stdenv.mkDerivation rec { 24 pname = "lms"; 25 + version = "3.68.1"; 26 27 src = fetchFromGitHub { 28 owner = "epoupon"; 29 repo = "lms"; 30 rev = "v${version}"; 31 + hash = "sha256-BV1VeNTBED5I9OZlnLgiTLQsGK0HlQYSQykJJjQPn60="; 32 }; 33 34 strictDeps = true;
+2 -2
pkgs/by-name/na/namespace-cli/package.nix
··· 6 7 buildGoModule rec { 8 pname = "namespace-cli"; 9 - version = "0.0.431"; 10 11 src = fetchFromGitHub { 12 owner = "namespacelabs"; 13 repo = "foundation"; 14 rev = "v${version}"; 15 - hash = "sha256-huMJCStwmvPkvAEp0FnC3B4z9KqSRMWUd3KJ61WNREE="; 16 }; 17 18 vendorHash = "sha256-/JFiCflhJsu8Tkkw0Pqj0iOauVXXLaNuPRK524YVN98=";
··· 6 7 buildGoModule rec { 8 pname = "namespace-cli"; 9 + version = "0.0.433"; 10 11 src = fetchFromGitHub { 12 owner = "namespacelabs"; 13 repo = "foundation"; 14 rev = "v${version}"; 15 + hash = "sha256-ZkRo6tPYJk3ym7LDkucnoLTbmCRJ7nup4zB/7wY6dTc="; 16 }; 17 18 vendorHash = "sha256-/JFiCflhJsu8Tkkw0Pqj0iOauVXXLaNuPRK524YVN98=";
+1
pkgs/by-name/nc/ncmpcpp/package.nix
··· 43 (lib.withFeature visualizerSupport "fftw") 44 (lib.enableFeature clockSupport "clock") 45 (lib.withFeature taglibSupport "taglib") 46 ]; 47 48 nativeBuildInputs = [
··· 43 (lib.withFeature visualizerSupport "fftw") 44 (lib.enableFeature clockSupport "clock") 45 (lib.withFeature taglibSupport "taglib") 46 + (lib.withFeatureAs true "boost" boost.dev) 47 ]; 48 49 nativeBuildInputs = [
+2 -2
pkgs/by-name/nz/nzbhydra2/package.nix
··· 10 }: 11 stdenv.mkDerivation rec { 12 pname = "nzbhydra2"; 13 - version = "7.15.3"; 14 15 src = fetchzip { 16 url = "https://github.com/theotherp/nzbhydra2/releases/download/v${version}/nzbhydra2-${version}-generic.zip"; 17 - hash = "sha256-zVRiJ2giwxeNDVBCpYpkAmMn+kf2c9+YbAkUn7LOkkM="; 18 stripRoot = false; 19 }; 20
··· 10 }: 11 stdenv.mkDerivation rec { 12 pname = "nzbhydra2"; 13 + version = "7.16.0"; 14 15 src = fetchzip { 16 url = "https://github.com/theotherp/nzbhydra2/releases/download/v${version}/nzbhydra2-${version}-generic.zip"; 17 + hash = "sha256-BgMTR4vj+JTzxJDPJhpvkYjTav68O7d1POXDMbQMOvQ="; 18 stripRoot = false; 19 }; 20
+2 -2
pkgs/by-name/oc/oci-cli/package.nix
··· 25 26 py.pkgs.buildPythonApplication rec { 27 pname = "oci-cli"; 28 - version = "3.62.2"; 29 pyproject = true; 30 31 src = fetchFromGitHub { 32 owner = "oracle"; 33 repo = "oci-cli"; 34 tag = "v${version}"; 35 - hash = "sha256-QLvHQwKNS5yr3ZNyQIK2nTgDZ+BKAd0K+H6e63bI4PM="; 36 }; 37 38 nativeBuildInputs = [ installShellFiles ];
··· 25 26 py.pkgs.buildPythonApplication rec { 27 pname = "oci-cli"; 28 + version = "3.63.0"; 29 pyproject = true; 30 31 src = fetchFromGitHub { 32 owner = "oracle"; 33 repo = "oci-cli"; 34 tag = "v${version}"; 35 + hash = "sha256-29jEfzS/hJQKX6P3VL/Wy+0/3DFmOKFj4RTTGkVhXXM="; 36 }; 37 38 nativeBuildInputs = [ installShellFiles ];
+7 -7
pkgs/by-name/pi/pim6sd/package.nix
··· 9 10 stdenv.mkDerivation { 11 pname = "pim6sd"; 12 - version = "0-unstable-2019-05-31"; 13 14 src = fetchFromGitHub { 15 owner = "troglobit"; 16 repo = "pim6sd"; 17 - rev = "fa3909529981dd705ba9ead0517222c30c581a4e"; 18 - sha256 = "0x7dyark2mp9xqz9cnmmgaf0z143vxn2835clllpji4ylg77zdjw"; 19 }; 20 21 nativeBuildInputs = [ ··· 24 flex 25 ]; 26 27 - meta = with lib; { 28 description = "PIM for IPv6 sparse mode daemon"; 29 homepage = "https://github.com/troglobit/pim6sd"; 30 - license = licenses.bsd3; 31 - maintainers = with maintainers; [ hexa ]; 32 - platforms = platforms.unix; 33 broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/pim6sd.x86_64-darwin 34 }; 35 }
··· 9 10 stdenv.mkDerivation { 11 pname = "pim6sd"; 12 + version = "0-unstable-2024-12-14"; 13 14 src = fetchFromGitHub { 15 owner = "troglobit"; 16 repo = "pim6sd"; 17 + rev = "9fd332d92af4fe8c92a70c1b6c2048ffddb0e48a"; 18 + hash = "sha256-iTukxjo63Smk6wX8SQsi49iNLpmxeN9JSkBZB5aBMaQ="; 19 }; 20 21 nativeBuildInputs = [ ··· 24 flex 25 ]; 26 27 + meta = { 28 description = "PIM for IPv6 sparse mode daemon"; 29 homepage = "https://github.com/troglobit/pim6sd"; 30 + license = lib.licenses.bsd3; 31 + maintainers = with lib.maintainers; [ hexa ]; 32 + platforms = lib.platforms.unix; 33 broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/pim6sd.x86_64-darwin 34 }; 35 }
+3 -3
pkgs/by-name/re/renode-dts2repl/package.nix
··· 7 8 python3.pkgs.buildPythonApplication { 9 pname = "renode-dts2repl"; 10 - version = "0-unstable-2025-07-08"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "antmicro"; 15 repo = "dts2repl"; 16 - rev = "9c75757b1de9e1bd93d1b1de5d516a65c481b026"; 17 - hash = "sha256-m3v/HQKDHhfmk7vjbSGxZiyAK2/5b8FVszJjNDHQj2Y="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 python3.pkgs.buildPythonApplication { 9 pname = "renode-dts2repl"; 10 + version = "0-unstable-2025-07-24"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "antmicro"; 15 repo = "dts2repl"; 16 + rev = "b94aaad8ad6cd3252160a11ac37f2bde8280d1b0"; 17 + hash = "sha256-Cdg3uyZC55ajUlghHkqoGGN/kZnjuHVxIEvo2LDua1Q="; 18 }; 19 20 nativeBuildInputs = [
+3 -3
pkgs/by-name/ru/ruffle/package.nix
··· 21 }: 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "ruffle"; 24 - version = "0-nightly-2025-07-19"; 25 26 src = fetchFromGitHub { 27 owner = "ruffle-rs"; 28 repo = "ruffle"; 29 tag = lib.strings.removePrefix "0-" finalAttrs.version; 30 - hash = "sha256-2EDKnuWE1VHsw7UkMCbmREVRsB1CgwrxnC1x2lvCi+0="; 31 }; 32 33 - cargoHash = "sha256-BRfljhOQ9X4LBQ14tLmd6M3N19nOMwk3AC02iclATm4="; 34 cargoBuildFlags = lib.optional withRuffleTools "--workspace"; 35 36 env =
··· 21 }: 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "ruffle"; 24 + version = "0-nightly-2025-07-27"; 25 26 src = fetchFromGitHub { 27 owner = "ruffle-rs"; 28 repo = "ruffle"; 29 tag = lib.strings.removePrefix "0-" finalAttrs.version; 30 + hash = "sha256-t15htXX+j2xEtOgGiqcCjG5F/17DnqnvEx0dxL3DRw4="; 31 }; 32 33 + cargoHash = "sha256-xrlcn18ryK7PrR/KfBKN0ot+h06nj4cl2Gx4Dm1RyqU="; 34 cargoBuildFlags = lib.optional withRuffleTools "--workspace"; 35 36 env =
+3 -3
pkgs/by-name/sc/schemat/package.nix
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "schemat"; 11 - version = "0.4.1"; 12 13 src = fetchFromGitHub { 14 owner = "raviqqe"; 15 repo = "schemat"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-GthDo45Kmz7ZNwFZGGhTcyDn8+g6QUbaVv8M46tm+Qs="; 18 }; 19 20 - cargoHash = "sha256-g18k/wyZqeunTHnLnfOTh4I0NlbgNya5y3EZVyY1B1c="; 21 22 doInstallCheck = true; 23 nativeInstallCheckInputs = [ versionCheckHook ];
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "schemat"; 11 + version = "0.4.2"; 12 13 src = fetchFromGitHub { 14 owner = "raviqqe"; 15 repo = "schemat"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-JOrBQvrnA/qSmI+jJjGjcxEWFDCfiUmtJaZPI3N0rMk="; 18 }; 19 20 + cargoHash = "sha256-zGP8m05g6zEQ/dx9ChLhUCM2x9q3bltPW+9ku05rzCE="; 21 22 doInstallCheck = true; 23 nativeInstallCheckInputs = [ versionCheckHook ];
+3 -3
pkgs/by-name/sy/system76-power/package.nix
··· 9 10 rustPlatform.buildRustPackage (finalAttrs: { 11 pname = "system76-power"; 12 - version = "1.2.6"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "system76-power"; 17 tag = finalAttrs.version; 18 - hash = "sha256-TVrM54t6xDLMQAqZKpzSGh6M3/4ZCj99e2J/gotN0cc="; 19 }; 20 21 nativeBuildInputs = [ pkg-config ]; ··· 24 libusb1 25 ]; 26 27 - cargoHash = "sha256-mZy1iVyjUFeed5fnj1ASEJ+raAe2D0V8TO84fd0RuXM="; 28 29 postInstall = '' 30 install -D -m 0644 data/com.system76.PowerDaemon.conf $out/etc/dbus-1/system.d/com.system76.PowerDaemon.conf
··· 9 10 rustPlatform.buildRustPackage (finalAttrs: { 11 pname = "system76-power"; 12 + version = "1.2.7"; 13 14 src = fetchFromGitHub { 15 owner = "pop-os"; 16 repo = "system76-power"; 17 tag = finalAttrs.version; 18 + hash = "sha256-ucNCZD1RJfgC0uVz28846Cghpg4/vJPtkE+rO0LaFmg="; 19 }; 20 21 nativeBuildInputs = [ pkg-config ]; ··· 24 libusb1 25 ]; 26 27 + cargoHash = "sha256-UiRaR0x8pD0ht5Ckbrxm8PzskT/iIKGLFCfyoY1ZEnQ="; 28 29 postInstall = '' 30 install -D -m 0644 data/com.system76.PowerDaemon.conf $out/etc/dbus-1/system.d/com.system76.PowerDaemon.conf
+3 -3
pkgs/by-name/tf/tflint/package.nix
··· 11 12 let 13 pname = "tflint"; 14 - version = "0.58.0"; 15 in 16 buildGoModule { 17 inherit pname version; ··· 20 owner = "terraform-linters"; 21 repo = "tflint"; 22 tag = "v${version}"; 23 - hash = "sha256-AaY2UghPvYveZ4xtUphPOnnoA6FcyO9Y2Uzz3bN8Q8I="; 24 }; 25 26 - vendorHash = "sha256-lmV23xDzBaMxV4MQeatX4sF0UwDZBlekdW21CMGtIqs="; 27 28 doCheck = false; 29
··· 11 12 let 13 pname = "tflint"; 14 + version = "0.58.1"; 15 in 16 buildGoModule { 17 inherit pname version; ··· 20 owner = "terraform-linters"; 21 repo = "tflint"; 22 tag = "v${version}"; 23 + hash = "sha256-1SuNcqU8JtMypoltbNBZHZZi78jvbbAD+nmj2v8NU5g="; 24 }; 25 26 + vendorHash = "sha256-8sHiCEtVs+rUnmJ9NPYJJcr4sDlFaEWklE3JaoXEu9w="; 27 28 doCheck = false; 29
+3 -3
pkgs/by-name/ts/tscli/package.nix
··· 8 9 buildGoModule rec { 10 pname = "tscli"; 11 - version = "0.0.13"; 12 13 src = fetchFromGitHub { 14 owner = "jaxxstorm"; 15 repo = "tscli"; 16 tag = "v${version}"; 17 - hash = "sha256-KncOCrpu0/72Nf9dOErKT45PxPECS50+wokO10sGUXc="; 18 }; 19 20 - vendorHash = "sha256-FmJoKADhcHk5mWjcXxXb7VszZhFfGWmBKUGxUjvA64U="; 21 22 nativeBuildInputs = [ installShellFiles ]; 23
··· 8 9 buildGoModule rec { 10 pname = "tscli"; 11 + version = "0.0.15"; 12 13 src = fetchFromGitHub { 14 owner = "jaxxstorm"; 15 repo = "tscli"; 16 tag = "v${version}"; 17 + hash = "sha256-RsWpZYRb/6ZpOio5te7qokGJeTlSmu/MH+BVoQVbkNw="; 18 }; 19 20 + vendorHash = "sha256-RELJJN2ldcUkbyskitg1y6vakdQ6mRkmT7Y25TS2sz8="; 21 22 nativeBuildInputs = [ installShellFiles ]; 23
+6 -9
pkgs/by-name/ve/vectorcode/package.nix
··· 160 installShellCompletion vectorcode.{bash,zsh} 161 ''; 162 163 - postFixup = '' 164 - wrapProgram $out/bin/vectorcode \ 165 - --prefix PYTHONPATH : "$PYTHONPATH" \ 166 - --set PATH ${ 167 - lib.makeBinPath [ 168 - python 169 - ] 170 - }; 171 - ''; 172 173 pythonImportsCheck = [ "vectorcode" ]; 174
··· 160 installShellCompletion vectorcode.{bash,zsh} 161 ''; 162 163 + makeWrapperArgs = [ 164 + "--prefix" 165 + "PYTHONPATH" 166 + ":" 167 + "$PYTHONPATH" 168 + ]; 169 170 pythonImportsCheck = [ "vectorcode" ]; 171
+3 -3
pkgs/by-name/wd/wdt/package.nix
··· 13 14 stdenv.mkDerivation { 15 pname = "wdt"; 16 - version = "1.27.1612021-unstable-2025-07-09"; 17 18 src = fetchFromGitHub { 19 owner = "facebook"; 20 repo = "wdt"; 21 - rev = "e4d03e392e90b8ff4d2a67da31d65405afd32db5"; 22 - sha256 = "sha256-epjZFTczJLmI5MgKLMVXhEhv9MYJCYWYOAkZcvqeBs0="; 23 }; 24 25 nativeBuildInputs = [ cmake ];
··· 13 14 stdenv.mkDerivation { 15 pname = "wdt"; 16 + version = "1.27.1612021-unstable-2025-07-23"; 17 18 src = fetchFromGitHub { 19 owner = "facebook"; 20 repo = "wdt"; 21 + rev = "9294400cb0f5f7a0eef7fdf009cc01f00a5917c1"; 22 + sha256 = "sha256-uDsHdha8JA2oue/SBej4lYFWEtaKcsVeNBhtZZBEPZI="; 23 }; 24 25 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/xc/xcrawl3r/package.nix
··· 6 7 buildGoModule rec { 8 pname = "xcrawl3r"; 9 - version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "hueristiq"; 13 repo = "xcrawl3r"; 14 tag = version; 15 - hash = "sha256-Ojm5cBeXRtDGQfbDweLlD1V12PYJHxVbO2g1X1Wt/B8="; 16 }; 17 18 - vendorHash = "sha256-rBKpYB7t9zdduqZA1VwCBp+kXpB8nABhTo+IaoOE8bE="; 19 20 ldflags = [ 21 "-s"
··· 6 7 buildGoModule rec { 8 pname = "xcrawl3r"; 9 + version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "hueristiq"; 13 repo = "xcrawl3r"; 14 tag = version; 15 + hash = "sha256-U5Gu04QR8ZYIUbUwP6k7PfAp1Dz4u2RUVGqamV14BEk="; 16 }; 17 18 + vendorHash = "sha256-GZy7AMhrgswWS4dWRcMW5WF2IVDPeg8ZERizRQi7tZ4="; 19 20 ldflags = [ 21 "-s"
+34
pkgs/by-name/xd/xdcc-cli/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + versionCheckHook, 6 + nix-update-script, 7 + }: 8 + 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 + pname = "xdcc-cli"; 11 + version = "0.1.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "jreiml"; 15 + repo = "xdcc-cli"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-rPMerxQLB+/S3FtM4e5lCk0yAOUtWRhA8debwxbqmNI="; 18 + }; 19 + 20 + cargoHash = "sha256-qAQkKGyLEUR4Pf5KVjqBsdyFxsgD/docRWKrQsf7KVo="; 21 + 22 + nativeInstallCheckInputs = [ versionCheckHook ]; 23 + 24 + passthru.updateScript = nix-update-script { }; 25 + 26 + meta = { 27 + description = "CLI tool for downloading files using XDCC written in Rust"; 28 + homepage = "https://github.com/jreiml/xdcc-cli"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ guilhermenl ]; 31 + platforms = lib.platforms.unix; 32 + mainProgram = "xdcc-cli"; 33 + }; 34 + })
+3 -3
pkgs/by-name/xd/xdg-ninja/package.nix
··· 10 11 stdenvNoCC.mkDerivation { 12 pname = "xdg-ninja"; 13 - version = "0.2.0.2-unstable-2025-06-07"; 14 15 src = fetchFromGitHub { 16 owner = "b3nj5m1n"; 17 repo = "xdg-ninja"; 18 - rev = "42ee421d2d532a75942f7395d20baddf23ed7164"; 19 - hash = "sha256-LIW49kWxfb/oVXkd4xUP6bsoBqcbdZSUjAZbDHVqPp0="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper ];
··· 10 11 stdenvNoCC.mkDerivation { 12 pname = "xdg-ninja"; 13 + version = "0.2.0.2-unstable-2025-07-25"; 14 15 src = fetchFromGitHub { 16 owner = "b3nj5m1n"; 17 repo = "xdg-ninja"; 18 + rev = "611b3c43b56e994ed673b6953fa1c37c85765011"; 19 + hash = "sha256-yHILisO34m6XAeJ5GrxkxFUOPcAKOlpIsKYkQz9UfLc="; 20 }; 21 22 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/by-name/xr/xray/package.nix
··· 15 16 buildGoModule rec { 17 pname = "xray"; 18 - version = "25.2.21"; 19 20 src = fetchFromGitHub { 21 owner = "XTLS"; 22 repo = "Xray-core"; 23 rev = "v${version}"; 24 - hash = "sha256-1KJ6YUYpOHp9AFSDmbPWqcyRdf/4XNQtuT9oiNcKRnU="; 25 }; 26 27 - vendorHash = "sha256-PUZ0ntG3D09FNC8QhIFShhZLLdTT9CgAimrBy/WLKAw="; 28 29 nativeBuildInputs = [ makeWrapper ]; 30
··· 15 16 buildGoModule rec { 17 pname = "xray"; 18 + version = "25.7.26"; 19 20 src = fetchFromGitHub { 21 owner = "XTLS"; 22 repo = "Xray-core"; 23 rev = "v${version}"; 24 + hash = "sha256-oPB4OngMDUk+HURDoUhIZ6SGQ0gII740PjgjP2fUK/k="; 25 }; 26 27 + vendorHash = "sha256-AmY9q0I0S7Xki9mgCJn/nV4Y9Ra6MDgnma2iPnoWQhg="; 28 29 nativeBuildInputs = [ makeWrapper ]; 30
+3 -3
pkgs/by-name/xs/xsubfind3r/package.nix
··· 6 7 buildGoModule rec { 8 pname = "xsubfind3r"; 9 - version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "hueristiq"; 13 repo = "xsubfind3r"; 14 tag = version; 15 - hash = "sha256-S89X/701BNzT1BJUsGvylBuiuUCf0zpWqp6p6ZHIzyo="; 16 }; 17 18 - vendorHash = "sha256-Jl533DNno0XxjjPvGUVbyYt8fSfHNYKzQwOAmo1IpWw="; 19 20 ldflags = [ 21 "-s"
··· 6 7 buildGoModule rec { 8 pname = "xsubfind3r"; 9 + version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "hueristiq"; 13 repo = "xsubfind3r"; 14 tag = version; 15 + hash = "sha256-whe7GXstGj2Yh/UtpNAh71WwnRU9aEHtS0diW0m9QXs="; 16 }; 17 18 + vendorHash = "sha256-cYutO+N974ZJE/UJiYS0ZuWqRKlfDgEL5qqsejBptcs="; 19 20 ldflags = [ 21 "-s"
+3 -3
pkgs/development/php-packages/phing/default.nix
··· 8 (php.withExtensions ({ enabled, all }: enabled ++ (with all; [ xsl ]))).buildComposerProject2 9 (finalAttrs: { 10 pname = "phing"; 11 - version = "3.0.1"; 12 13 # Upstream no longer provides the composer.lock in their release artifact 14 src = fetchgit { 15 url = "https://github.com/phingofficial/phing"; 16 tag = finalAttrs.version; 17 - hash = "sha256-eVDHwG8UPvQPrhD3KuO4ZONsnGGbclVs4kNVG+Ac1/E="; 18 }; 19 20 - vendorHash = "sha256-os5ljzAAxpFfpfAlYNboIj0VX8/otI14JbjV8FSo0yg="; 21 22 nativeInstallCheckInputs = [ 23 versionCheckHook
··· 8 (php.withExtensions ({ enabled, all }: enabled ++ (with all; [ xsl ]))).buildComposerProject2 9 (finalAttrs: { 10 pname = "phing"; 11 + version = "3.1.0"; 12 13 # Upstream no longer provides the composer.lock in their release artifact 14 src = fetchgit { 15 url = "https://github.com/phingofficial/phing"; 16 tag = finalAttrs.version; 17 + hash = "sha256-gY6ocmkd7eJIMaBrewfxYL7gTr+1qNHTkuAp+w9ApUU="; 18 }; 19 20 + vendorHash = "sha256-3frpoQzHtJA2/jJpZT+yIRatEwiY6LIUGzEZBa8hXbM="; 21 22 nativeInstallCheckInputs = [ 23 versionCheckHook
+7 -6
pkgs/development/python-modules/bytewax/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 - pythonOlder, 6 7 # build-system 8 cmake, ··· 30 buildPythonPackage rec { 31 pname = "bytewax"; 32 version = "0.21.1"; 33 - format = "pyproject"; 34 35 - disabled = pythonOlder "3.7"; 36 37 src = fetchFromGitHub { 38 owner = "bytewax"; ··· 100 101 pythonImportsCheck = [ "bytewax" ]; 102 103 - meta = with lib; { 104 description = "Python Stream Processing"; 105 homepage = "https://github.com/bytewax/bytewax"; 106 changelog = "https://github.com/bytewax/bytewax/releases/tag/v${version}"; 107 - license = licenses.asl20; 108 - maintainers = with maintainers; [ 109 mslingsby 110 kfollesdal 111 ];
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + pythonAtLeast, 6 7 # build-system 8 cmake, ··· 30 buildPythonPackage rec { 31 pname = "bytewax"; 32 version = "0.21.1"; 33 + pyproject = true; 34 35 + # error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12) 36 + disabled = pythonAtLeast "3.13"; 37 38 src = fetchFromGitHub { 39 owner = "bytewax"; ··· 101 102 pythonImportsCheck = [ "bytewax" ]; 103 104 + meta = { 105 description = "Python Stream Processing"; 106 homepage = "https://github.com/bytewax/bytewax"; 107 changelog = "https://github.com/bytewax/bytewax/releases/tag/v${version}"; 108 + license = lib.licenses.asl20; 109 + maintainers = with lib.maintainers; [ 110 mslingsby 111 kfollesdal 112 ];
+2 -2
pkgs/development/python-modules/censys/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "censys"; 22 - version = "2.2.17"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "censys"; 29 repo = "censys-python"; 30 tag = "v${version}"; 31 - hash = "sha256-1V7IeaV7Ro1q5UyD2DDetunaRO2L4UbF1VODg5ktqKs="; 32 }; 33 34 build-system = [ poetry-core ];
··· 19 20 buildPythonPackage rec { 21 pname = "censys"; 22 + version = "2.2.18"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "censys"; 29 repo = "censys-python"; 30 tag = "v${version}"; 31 + hash = "sha256-fHqDXqhjqfj8VBb7Od7wuUXAEHQBXwm5LAUPLM0oN2Q="; 32 }; 33 34 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/cwl-utils/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "cwl-utils"; 22 - version = "0.38"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.8"; ··· 28 owner = "common-workflow-language"; 29 repo = "cwl-utils"; 30 tag = "v${version}"; 31 - hash = "sha256-goeMlyHYiS4JLOVBFjcLSzdYrdoIZ904hJHFPGZyxKo="; 32 }; 33 34 build-system = [ setuptools ];
··· 19 20 buildPythonPackage rec { 21 pname = "cwl-utils"; 22 + version = "0.39"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.8"; ··· 28 owner = "common-workflow-language"; 29 repo = "cwl-utils"; 30 tag = "v${version}"; 31 + hash = "sha256-qmvFr+zUZxwFqC4mfdktcS4hrNhJnxvWmdSJSswJ874="; 32 }; 33 34 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/license-expression/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "license-expression"; 13 - version = "30.4.3"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "aboutcode-org"; 20 repo = "license-expression"; 21 tag = "v${version}"; 22 - hash = "sha256-e/pu2Mhy3E4ddGUGkVF7M9UFlB1IlXDPTReSh5gKwbE="; 23 }; 24 25 dontConfigure = true;
··· 10 11 buildPythonPackage rec { 12 pname = "license-expression"; 13 + version = "30.4.4"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "aboutcode-org"; 20 repo = "license-expression"; 21 tag = "v${version}"; 22 + hash = "sha256-Bgkm0nhu/jeqtg3444R2encCtfzd7xnwyCXlZWaYSQ0="; 23 }; 24 25 dontConfigure = true;
+2 -2
pkgs/development/python-modules/llm-gemini/default.nix
··· 15 }: 16 buildPythonPackage rec { 17 pname = "llm-gemini"; 18 - version = "0.23"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "simonw"; 23 repo = "llm-gemini"; 24 tag = version; 25 - hash = "sha256-e+l7YjMJi+ZtkaBQUXT9364F7ncQO476isSm8uMCCB0="; 26 }; 27 28 build-system = [ setuptools ];
··· 15 }: 16 buildPythonPackage rec { 17 pname = "llm-gemini"; 18 + version = "0.24"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "simonw"; 23 repo = "llm-gemini"; 24 tag = version; 25 + hash = "sha256-pMPAfRhcvKoxvtbkmtT3L7EvBg9WsNVOP6wFjbyqncw="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/msgraph-sdk/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "msgraph-sdk"; 19 - version = "1.38.0"; 20 pyproject = true; 21 22 src = fetchFromGitHub { 23 owner = "microsoftgraph"; 24 repo = "msgraph-sdk-python"; 25 tag = "v${version}"; 26 - hash = "sha256-wHned9jggwEooSTtWc06bCE2WW15eAH1lvi3cbOUyJw="; 27 }; 28 29 build-system = [ flit-core ];
··· 16 17 buildPythonPackage rec { 18 pname = "msgraph-sdk"; 19 + version = "1.39.0"; 20 pyproject = true; 21 22 src = fetchFromGitHub { 23 owner = "microsoftgraph"; 24 repo = "msgraph-sdk-python"; 25 tag = "v${version}"; 26 + hash = "sha256-cT87lI28K7z4nSD35vqfroAtnZD/A0ECTNVz5vIG8R4="; 27 }; 28 29 build-system = [ flit-core ];
+2 -2
pkgs/development/python-modules/multitasking/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "multitasking"; 9 - version = "0.0.11"; 10 format = "setuptools"; 11 12 # GitHub source releases aren't tagged 13 src = fetchPypi { 14 inherit pname version; 15 - hash = "sha256-TWvDzGX5stynL7Wnh4UKiNro9iDCs2rptVJI5RvNYCY="; 16 }; 17 18 doCheck = false; # No tests included
··· 6 7 buildPythonPackage rec { 8 pname = "multitasking"; 9 + version = "0.0.12"; 10 format = "setuptools"; 11 12 # GitHub source releases aren't tagged 13 src = fetchPypi { 14 inherit pname version; 15 + hash = "sha256-L7ovqO2MS4XiJ8XdfcQcfWWN47byR5JzFhdaVzSbhNE="; 16 }; 17 18 doCheck = false; # No tests included
+3 -2
pkgs/development/python-modules/pymatgen/default.nix
··· 169 "test_timer" 170 ]; 171 172 - disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ 173 # We have not packaged moyopy yet. 174 "tests/analysis/test_prototypes.py::test_get_protostructure_label_from_moyopy" 175 - 176 # Crash when running the pmg command 177 # Critical error: required built-in appearance SystemAppearance not found 178 "tests/cli/test_pmg_plot.py"
··· 169 "test_timer" 170 ]; 171 172 + disabledTestPaths = [ 173 # We have not packaged moyopy yet. 174 "tests/analysis/test_prototypes.py::test_get_protostructure_label_from_moyopy" 175 + ] 176 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 177 # Crash when running the pmg command 178 # Critical error: required built-in appearance SystemAppearance not found 179 "tests/cli/test_pmg_plot.py"
+41
pkgs/development/python-modules/pymonoprice/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pyserial, 6 + pyserial-asyncio-fast, 7 + pytestCheckHook, 8 + setuptools, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "pymonoprice"; 13 + version = "0.5"; 14 + pyproject = true; 15 + 16 + src = fetchFromGitHub { 17 + owner = "etsinko"; 18 + repo = "pymonoprice"; 19 + tag = version; 20 + hash = "sha256-kyFOWG/Jvn+h9ludzd2Zul9/lkwPxReH76nnDIGD+fM="; 21 + }; 22 + 23 + build-system = [ setuptools ]; 24 + 25 + dependencies = [ 26 + pyserial 27 + pyserial-asyncio-fast 28 + ]; 29 + 30 + nativeCheckInputs = [ pytestCheckHook ]; 31 + 32 + pythonImportsCheck = [ "pymonoprice" ]; 33 + 34 + meta = { 35 + description = "Python 3 interface implementation for Monoprice 6 zone amplifier"; 36 + homepage = "https://github.com/etsinko/pymonoprice"; 37 + changelog = "https://github.com/etsinko/pymonoprice/releases/tag/${version}"; 38 + license = lib.licenses.mit; 39 + maintainers = [ lib.maintainers.jamiemagee ]; 40 + }; 41 + }
+38
pkgs/development/python-modules/python-join-api/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + setuptools, 6 + flask, 7 + requests, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "python-join-api"; 12 + version = "0.0.9"; 13 + pyproject = true; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + hash = "sha256-FGqOqOd9VVH9hxMqYH7M10W+g5tpImxs+K4AHJJZRaE="; 18 + }; 19 + 20 + build-system = [ setuptools ]; 21 + 22 + dependencies = [ 23 + flask 24 + requests 25 + ]; 26 + 27 + pythonImportsCheck = [ "pyjoin" ]; 28 + 29 + # No tests 30 + doCheck = false; 31 + 32 + meta = { 33 + description = "Python API for interacting with Join by joaoapps"; 34 + homepage = "https://github.com/nkgilley/python-join-api"; 35 + license = lib.licenses.mit; 36 + maintainers = [ lib.maintainers.jamiemagee ]; 37 + }; 38 + }
+2 -2
pkgs/development/python-modules/scikit-hep-testdata/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "scikit-hep-testdata"; 18 - version = "0.5.4"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "scikit-hep"; 23 repo = "scikit-hep-testdata"; 24 tag = "v${version}"; 25 - hash = "sha256-LDOBd+0Aw/x9qW30Tb0B9AlhckOkJhY+Mx4ERkvDbJc="; 26 }; 27 28 build-system = [ setuptools-scm ];
··· 15 16 buildPythonPackage rec { 17 pname = "scikit-hep-testdata"; 18 + version = "0.5.8"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "scikit-hep"; 23 repo = "scikit-hep-testdata"; 24 tag = "v${version}"; 25 + hash = "sha256-NAb+2AwU6BwPkgYr0WQn47hdeS+cRLgYckcDT2/dHpU="; 26 }; 27 28 build-system = [ setuptools-scm ];
+9
pkgs/development/python-modules/smolagents/default.nix
··· 62 hash = "sha256-ING+C2MACKFto+1FON5OGFgzLf8SM99ViTdADzNzQLw="; 63 }; 64 65 build-system = [ setuptools ]; 66 67 dependencies = [
··· 62 hash = "sha256-ING+C2MACKFto+1FON5OGFgzLf8SM99ViTdADzNzQLw="; 63 }; 64 65 + # TODO: remove at the next release 66 + # ImportError: cannot import name 'require_soundfile' from 'transformers.testing_utils' 67 + # Caused by: https://github.com/huggingface/transformers/commit/1ecd52e50a31e7c344c32564e0484d7e9a0f2256 68 + # Fixed in: https://github.com/huggingface/smolagents/pull/1625 69 + postPatch = '' 70 + substituteInPlace tests/test_types.py \ 71 + --replace-fail "require_soundfile" "require_torchcodec" 72 + ''; 73 + 74 build-system = [ setuptools ]; 75 76 dependencies = [
+8 -1
pkgs/development/python-modules/spacy/default.nix
··· 113 "test_download_compatibility" 114 "test_validate_compatibility_table" 115 "test_project_assets" 116 ]; 117 118 pythonImportsCheck = [ "spacy" ]; ··· 137 tests.annotation = callPackage ./annotation-test { }; 138 }; 139 140 meta = { 141 description = "Industrial-strength Natural Language Processing (NLP)"; 142 homepage = "https://github.com/explosion/spaCy"; 143 changelog = "https://github.com/explosion/spaCy/releases/tag/release-v${version}"; 144 license = lib.licenses.mit; 145 - maintainers = [ ]; 146 mainProgram = "spacy"; 147 }; 148 }
··· 113 "test_download_compatibility" 114 "test_validate_compatibility_table" 115 "test_project_assets" 116 + "test_find_available_port" 117 + 118 + # Tests for presence of outdated (and thus missing) spacy models 119 + # https://github.com/explosion/spaCy/issues/13856 120 + "test_registry_entries" 121 ]; 122 123 pythonImportsCheck = [ "spacy" ]; ··· 142 tests.annotation = callPackage ./annotation-test { }; 143 }; 144 145 + __darwinAllowLocalNetworking = true; # needed for test_find_available_port 146 + 147 meta = { 148 description = "Industrial-strength Natural Language Processing (NLP)"; 149 homepage = "https://github.com/explosion/spaCy"; 150 changelog = "https://github.com/explosion/spaCy/releases/tag/release-v${version}"; 151 license = lib.licenses.mit; 152 + maintainers = with lib.maintainers; [ sarahec ]; 153 mainProgram = "spacy"; 154 }; 155 }
+9 -20
pkgs/development/python-modules/txtai/default.nix
··· 224 graph 225 model 226 pipeline-audio 227 pipeline-image 228 pipeline-llm 229 pipeline-text ··· 289 ++ optional-dependencies.api 290 ++ optional-dependencies.similarity; 291 292 - enabledTestPaths = [ 293 - "test/python/test*.py" 294 - ]; 295 - 296 - # The deselected paths depend on the huggingface hub and should be run as a passthru test 297 - # disabledTestPaths won't work as the problem is with the classes containing the tests 298 - # (in other words, it fails on __init__) 299 - disabledTestPaths = [ 300 - "test/python/testagent.py" 301 - "test/python/testcloud.py" 302 - "test/python/testconsole.py" 303 - "test/python/testembeddings.py" 304 - "test/python/testgraph.py" 305 - "test/python/testapi/testapiembeddings.py" 306 - "test/python/testapi/testapipipelines.py" 307 - "test/python/testapi/testapiworkflow.py" 308 - "test/python/testdatabase/testclient.py" 309 - "test/python/testdatabase/testduckdb.py" 310 - "test/python/testdatabase/testencoder.py" 311 - "test/python/testworkflow.py" 312 ]; 313 314 disabledTests = [ ··· 316 "testInvalidTar" 317 "testInvalidZip" 318 # Downloads from Huggingface 319 "testPipeline" 320 "testVectors" 321 # Not finding sqlite-vec despite being supplied
··· 224 graph 225 model 226 pipeline-audio 227 + pipeline-data 228 pipeline-image 229 pipeline-llm 230 pipeline-text ··· 290 ++ optional-dependencies.api 291 ++ optional-dependencies.similarity; 292 293 + pytestFlagsArray = [ 294 + "test/python/*" 295 ]; 296 297 disabledTests = [ ··· 299 "testInvalidTar" 300 "testInvalidZip" 301 # Downloads from Huggingface 302 + "TestAgent" 303 + "TestCloud" 304 + "TestConsole" 305 + "TestEmbeddings" 306 + "TestGraph" 307 + "TestWorkflow" 308 "testPipeline" 309 "testVectors" 310 # Not finding sqlite-vec despite being supplied
+2 -2
pkgs/development/python-modules/xdis/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "xdis"; 14 - version = "6.1.4"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.6"; ··· 20 owner = "rocky"; 21 repo = "python-xdis"; 22 tag = version; 23 - hash = "sha256-thgHaxEEXmkrJlkl9kF6ocKRrnWOuESTxQrdtM+uH1o="; 24 }; 25 26 build-system = [
··· 11 12 buildPythonPackage rec { 13 pname = "xdis"; 14 + version = "6.1.5"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.6"; ··· 20 owner = "rocky"; 21 repo = "python-xdis"; 22 tag = version; 23 + hash = "sha256-KbWgA2RGmkzpsPBg2+hcpwHUCgEv7RWS3i5sswtROVE="; 24 }; 25 26 build-system = [
+5 -2
pkgs/servers/home-assistant/component-packages.nix
··· 2852 ++ hdate.optional-dependencies.astral; 2853 "joaoapps_join" = 2854 ps: with ps; [ 2855 - ]; # missing inputs: python-join-api 2856 "juicenet" = 2857 ps: with ps; [ 2858 ]; ··· 3693 ]; 3694 "monoprice" = 3695 ps: with ps; [ 3696 - ]; # missing inputs: pymonoprice 3697 "monzo" = 3698 ps: with ps; [ 3699 monzopy ··· 7319 "modem_callerid" 7320 "modern_forms" 7321 "mold_indicator" 7322 "monzo" 7323 "moon" 7324 "mopeka"
··· 2852 ++ hdate.optional-dependencies.astral; 2853 "joaoapps_join" = 2854 ps: with ps; [ 2855 + python-join-api 2856 + ]; 2857 "juicenet" = 2858 ps: with ps; [ 2859 ]; ··· 3694 ]; 3695 "monoprice" = 3696 ps: with ps; [ 3697 + pymonoprice 3698 + ]; 3699 "monzo" = 3700 ps: with ps; [ 3701 monzopy ··· 7321 "modem_callerid" 7322 "modern_forms" 7323 "mold_indicator" 7324 + "monoprice" 7325 "monzo" 7326 "moon" 7327 "mopeka"
+19 -21
pkgs/servers/pinnwand/steck.nix
··· 2 lib, 3 pkgs, 4 python3Packages, 5 - fetchPypi, 6 nixosTests, 7 }: 8 9 python3Packages.buildPythonApplication rec { 10 pname = "steck"; 11 - version = "0.7.0"; 12 - format = "setuptools"; 13 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "1a3l427ibwck9zzzy1sp10hmjgminya08i4r9j4559qzy7lxghs1"; 17 }; 18 19 - postPatch = '' 20 - cat setup.py 21 - substituteInPlace setup.py \ 22 - --replace 'click>=7.0,<8.0' 'click' \ 23 - --replace 'termcolor>=1.1.0,<2.0.0' 'termcolor' 24 - ''; 25 - 26 - nativeBuildInputs = with python3Packages; [ 27 - setuptools 28 ]; 29 30 - propagatedBuildInputs = with python3Packages; [ 31 pkgs.git 32 appdirs 33 click ··· 37 toml 38 ]; 39 40 - # tests are not in pypi package 41 - doCheck = false; 42 43 passthru.tests = nixosTests.pinnwand; 44 45 - meta = with lib; { 46 homepage = "https://github.com/supakeen/steck"; 47 - license = licenses.mit; 48 description = "Client for pinnwand pastebin"; 49 mainProgram = "steck"; 50 - maintainers = with maintainers; [ hexa ]; 51 }; 52 }
··· 2 lib, 3 pkgs, 4 python3Packages, 5 + fetchFromGitHub, 6 nixosTests, 7 }: 8 9 python3Packages.buildPythonApplication rec { 10 pname = "steck"; 11 + version = "0.8.0"; 12 + pyproject = true; 13 14 + src = fetchFromGitHub { 15 + owner = "supakeen"; 16 + repo = "steck"; 17 + tag = "v${version}"; 18 + hash = "sha256-5Spops8ERQ7TgFYH7n+c4hKdIQfjjujKaGhmhfAszgQ="; 19 }; 20 21 + build-system = with python3Packages; [ 22 + poetry-core 23 ]; 24 25 + dependencies = with python3Packages; [ 26 pkgs.git 27 appdirs 28 click ··· 32 toml 33 ]; 34 35 + pythonRelaxDeps = [ "termcolor" ]; 36 + 37 + nativeCheckInputs = with python3Packages; [ 38 + pytestCheckHook 39 + ]; 40 41 passthru.tests = nixosTests.pinnwand; 42 43 + meta = { 44 homepage = "https://github.com/supakeen/steck"; 45 + license = lib.licenses.mit; 46 description = "Client for pinnwand pastebin"; 47 mainProgram = "steck"; 48 + maintainers = with lib.maintainers; [ hexa ]; 49 }; 50 }
+81 -81
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 - version = "3.185.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.185.0-linux-x64.tar.gz"; 9 - sha256 = "0r7gsjk3gvvczirnpzrmrpbacmbkfq49wqydvcgwz96b1yhg3y2g"; 10 } 11 { 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-amd64.tar.gz"; ··· 33 sha256 = "1fwfvjjds143f79a9qjpr5vycahy11cd7zydrqgaan9q2djp3kq3"; 34 } 35 { 36 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-linux-amd64.tar.gz"; 37 - sha256 = "0jlaj3pz5j0hgnqdg2b1xw9cwlr4i5pvir8flhwvw222nsah15yv"; 38 } 39 { 40 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-linux-amd64.tar.gz"; ··· 77 sha256 = "13s55pl27q8lxlizzdz73i1h4cvi4pvszfns9jk8wsh2kc1h1qxz"; 78 } 79 { 80 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-linux-amd64.tar.gz"; 81 - sha256 = "0v9hw2m3vz3b9g1mabxmy0j863p51kwj9gkjfrsrabs80glz72ii"; 82 } 83 { 84 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-linux-amd64.tar.gz"; ··· 89 sha256 = "1zra1ck64gs4nwqf62ksfmpbx24lxw6vsgi47j4v8q051m89fgq3"; 90 } 91 { 92 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-linux-amd64.tar.gz"; 93 - sha256 = "027im101l9b3g7k4hp0mdcvwyb5fj6409k9a6zq0riv6598zf5ch"; 94 } 95 { 96 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-amd64.tar.gz"; ··· 105 sha256 = "192gnwf3kzhy3lzy3d1kvdggrjk9ixi9phq44x35w2pizh13xazn"; 106 } 107 { 108 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.10-linux-amd64.tar.gz"; 109 - sha256 = "0k6y5ci7ikj4h164syizhxg257nkpg0p265y9ibvri3z6hbqjrw4"; 110 } 111 { 112 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-linux-amd64.tar.gz"; ··· 117 sha256 = "0j73752fpljn2gydw1jzp8dknrvx2qcldjjqmd7yigf9spbnagj5"; 118 } 119 { 120 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.2-linux-amd64.tar.gz"; 121 - sha256 = "0izzpyjizzz4hlv6rnz3l8f4lgyfgxkf67hrxn6ph8zhzs3cgvh4"; 122 } 123 { 124 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.2.0-linux-amd64.tar.gz"; 125 - sha256 = "0vqhixxcl1axi68gz2kaj1gdnalxja1fdsqkm16pyci2hd5sxbbq"; 126 } 127 { 128 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.0-linux-amd64.tar.gz"; 129 - sha256 = "1ix96j8x02s4zci3jqhsyj3zknkk74019ywqj6c4mwd6jp078zva"; 130 } 131 { 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-amd64.tar.gz"; ··· 137 sha256 = "11rpismkdrbvcmfcx49i8wh7c959dm9hm6h6zbw1y0fllqyhhiqv"; 138 } 139 { 140 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.0-linux-amd64.tar.gz"; 141 - sha256 = "04lwij6x37ly0lxvcv7nd5r9l54y6s5ajiyz6nkj4y8x8qdifsrx"; 142 } 143 { 144 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-linux-amd64.tar.gz"; ··· 153 sha256 = "14ga54m7xakk5r8bvxhqh88fh6zvd07rsg5gsria0rcganf9kwd6"; 154 } 155 { 156 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-linux-amd64.tar.gz"; 157 - sha256 = "1gza6gr44wwj1d4yqyrg4clsvpgd38y6mdmnj4afy2ad4b6phpq5"; 158 } 159 { 160 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.185.0-darwin-x64.tar.gz"; 167 - sha256 = "15xpa6fpqqkmji5lvxc5cpbwxnq9idrbfk9afahr6qgkab4p7yrr"; 168 } 169 { 170 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-amd64.tar.gz"; ··· 191 sha256 = "0knw6l997znyk6x05i7f5haaxl40jpm0vwhhf11rypqhl16k5019"; 192 } 193 { 194 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-darwin-amd64.tar.gz"; 195 - sha256 = "1nvznxmdpb92s7c3fi8arz8kyzwdnvhhy8j4j9s5sqw5bn13bm3a"; 196 } 197 { 198 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-darwin-amd64.tar.gz"; ··· 235 sha256 = "0vr71abg73xh8b7j7w2gb4c18f72jsz9pzg2ihr29a18mdx9l78b"; 236 } 237 { 238 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-darwin-amd64.tar.gz"; 239 - sha256 = "00286346z1ws7ffghnz7c9rvjcd66nq6gmmxwlwgqiz6d02z5pv3"; 240 } 241 { 242 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-darwin-amd64.tar.gz"; ··· 247 sha256 = "0ddd0pgpyywq291r9q8w6bn41r2px595017iihx4n2cnb1c4v6d5"; 248 } 249 { 250 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-darwin-amd64.tar.gz"; 251 - sha256 = "0f4xqg4v1qqnkb40gbvkda2b46kr6n96c79qp8swx0gi7ainw0ps"; 252 } 253 { 254 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-amd64.tar.gz"; ··· 263 sha256 = "11341v1nkr2y0pj3k9d79xwqgwjwxdh4y2zg04qqjrdrikv36n85"; 264 } 265 { 266 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.10-darwin-amd64.tar.gz"; 267 - sha256 = "0iy1j33527g9r62q53lcy6h9016nr75cf7pp9kys7agxifbvskp6"; 268 } 269 { 270 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-darwin-amd64.tar.gz"; ··· 275 sha256 = "1pfkqfviizl1n0kvnm90r02vrnmda0k4a7bhy52dask4vvb3g387"; 276 } 277 { 278 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.2-darwin-amd64.tar.gz"; 279 - sha256 = "1yj0ciikakxmnrv9dwplp31dcldb4s7asnhg2603zh8wip8ggya2"; 280 } 281 { 282 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.2.0-darwin-amd64.tar.gz"; 283 - sha256 = "0g4jm9yfvvywbrsg9k2bv09ni4z2wybg7abdl3ym0vpw4zq6lldw"; 284 } 285 { 286 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.0-darwin-amd64.tar.gz"; 287 - sha256 = "0j1hmij36s9gz15gpdrzr6xbdfsv481hn0am4km4s2wi0y92vk0m"; 288 } 289 { 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-amd64.tar.gz"; ··· 295 sha256 = "1fgrnw3vhclfld28rdg6rkr21gfp1q8bxdbkrsim5lvzi80ih18s"; 296 } 297 { 298 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.0-darwin-amd64.tar.gz"; 299 - sha256 = "0mvnhpqv8v80lc79h7pdd5a8r60nhfg0znz7h1pj3rii2zx4c8fs"; 300 } 301 { 302 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-darwin-amd64.tar.gz"; ··· 311 sha256 = "1i5nlxkbzmjxlkcxbf35vvffz8y4f9vnh7bwnvqd31s1ccxv8f89"; 312 } 313 { 314 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-darwin-amd64.tar.gz"; 315 - sha256 = "16hl7116bc3h1ssq2c3h8v0d83q71wi0z6w94p94h30b9ficznk6"; 316 } 317 { 318 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.185.0-linux-arm64.tar.gz"; 325 - sha256 = "1i5vcqfmi79n7d6rqn0xgqzzqyiawjb044fvkwx6541kqwxw0pil"; 326 } 327 { 328 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-arm64.tar.gz"; ··· 349 sha256 = "10w4i3mqlxzvhy4bk7g9kz5bj8xv0yxh6b47n138lqxp8q1cc4yw"; 350 } 351 { 352 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-linux-arm64.tar.gz"; 353 - sha256 = "17ali0a6dwrmwka319ld7vwlrkhxic6yim21niphcda9gi9v1cs9"; 354 } 355 { 356 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-linux-arm64.tar.gz"; ··· 393 sha256 = "1cn7n1na4igb69wi3yyxmhiai7p8c1qn47cgwpzqj1l279jjx2vk"; 394 } 395 { 396 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-linux-arm64.tar.gz"; 397 - sha256 = "0ivqs7v2x5132r07i62crfckgifaf7kpqgkxl3wby0gdaac9z378"; 398 } 399 { 400 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-linux-arm64.tar.gz"; ··· 405 sha256 = "0d8m2krbzxjhfm82dgf8p4vm3kk9gk98l798q4ayjrddqqb4mxq4"; 406 } 407 { 408 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-linux-arm64.tar.gz"; 409 - sha256 = "19x8scaismr30dgfiaijn2mb0lnfv1z0vxa1gr8qn5w0yhl4qjhf"; 410 } 411 { 412 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-arm64.tar.gz"; ··· 421 sha256 = "17920c9wlaf5yg9q890ypc55d1h1yk8l1jbvgk97g9qdjsm7bia6"; 422 } 423 { 424 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.10-linux-arm64.tar.gz"; 425 - sha256 = "14d75k7l23p0di75svdhrpqwkgd1wc88s535sgp3ry8zknirx3y9"; 426 } 427 { 428 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-linux-arm64.tar.gz"; ··· 433 sha256 = "12j121fv3n2p54cmqjbx7yc7p8hqi7sb7bf4pcz6v1mmzxfsfz1c"; 434 } 435 { 436 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.2-linux-arm64.tar.gz"; 437 - sha256 = "1dwmbcg3i02nn1nfg7z4vx4622vpyzk9c1mgrishvv6mvm037fb1"; 438 } 439 { 440 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.2.0-linux-arm64.tar.gz"; 441 - sha256 = "1aba8vd13790d8h29i9h5i7zlj5franbfj1l1minlp4vhxry3q6c"; 442 } 443 { 444 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.0-linux-arm64.tar.gz"; 445 - sha256 = "0phigi7qydf2yqkiqi0gc1hhpx8fd2912d5y7g3s5yb5dblng21i"; 446 } 447 { 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-arm64.tar.gz"; ··· 453 sha256 = "1dz5d91x40l1fh513b45bphfvx6pc7gzzb3n3h72ssmg2x09rf76"; 454 } 455 { 456 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.0-linux-arm64.tar.gz"; 457 - sha256 = "1vnsiq70y0nc4dq49kymwqn4pjhd987417qdnciwd8q91aqkgyy9"; 458 } 459 { 460 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-linux-arm64.tar.gz"; ··· 469 sha256 = "08s8asqcl859sm7ifaysdk0d14bwyiridnk16f64k4prdiq6dqii"; 470 } 471 { 472 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-linux-arm64.tar.gz"; 473 - sha256 = "1r8vw8gyzzbsci405balmx582nm3cv0hs197g1wb53f989az555g"; 474 } 475 { 476 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.185.0-darwin-arm64.tar.gz"; 483 - sha256 = "05089n198d3sf2w5ydb7n9kv1z0wapiqkkzpinavs1d0wsshlgr7"; 484 } 485 { 486 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-arm64.tar.gz"; ··· 507 sha256 = "0ndkxq2vpppq2ygq0b81w72hnx8sb6ckdhcrx62gp9nfq5ya8y69"; 508 } 509 { 510 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-darwin-arm64.tar.gz"; 511 - sha256 = "099z1by8w9vgna544d8q1v3gnp3jbssj01k75kck2sm13954idli"; 512 } 513 { 514 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-darwin-arm64.tar.gz"; ··· 551 sha256 = "1kammj8rsawv2qjw7a01skf7qdzjgprfkapbgypfsqcmlsmphy93"; 552 } 553 { 554 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-darwin-arm64.tar.gz"; 555 - sha256 = "0ns88zd55p3pg8z8xs8jph9bv33s1alii4gnwd7gxc651gy7icrq"; 556 } 557 { 558 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-darwin-arm64.tar.gz"; ··· 563 sha256 = "0caz4kgnnrmdr7n571xc7yqscac9jnjwwpjzbnvx4ib6a91wvsdn"; 564 } 565 { 566 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-darwin-arm64.tar.gz"; 567 - sha256 = "1gdj29kmh1r4cbkzsmfgsmssrpakzrn0wn6h9y9fb1k0i3i9x56l"; 568 } 569 { 570 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-arm64.tar.gz"; ··· 579 sha256 = "1lg4jqficsy58wyl52gwqx5ch1wmasnz96ipcyci79dlpz6dbksg"; 580 } 581 { 582 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.10-darwin-arm64.tar.gz"; 583 - sha256 = "190mmw7sdw8rln9q5yv04hmn9b70cqd4piyhn8i23qf831irligr"; 584 } 585 { 586 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-darwin-arm64.tar.gz"; ··· 591 sha256 = "1braby52wys2ddfbb99yhhn6n3izr4sc70b7jl6ryrb6b17qqk0f"; 592 } 593 { 594 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.2-darwin-arm64.tar.gz"; 595 - sha256 = "0iikysfqf03pm7mrg383nisgh5v01bxjvxyhl2cg8bj8nsjr4s2h"; 596 } 597 { 598 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.2.0-darwin-arm64.tar.gz"; 599 - sha256 = "0wxdhalnhid7b0p1qq7pvc1llp0x671vmw2x5k6hddpqslxzzwvy"; 600 } 601 { 602 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.0-darwin-arm64.tar.gz"; 603 - sha256 = "06777viblb473yynw00xkhry37771gaxyqafpma4drj5qiicgmfn"; 604 } 605 { 606 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-arm64.tar.gz"; ··· 611 sha256 = "0pywbp952p7n1gh1rwdxkk1nvp7ri4kzanvi4qs3ca1nw7dvalqy"; 612 } 613 { 614 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.0-darwin-arm64.tar.gz"; 615 - sha256 = "07xq8ws4pqp4762lm8z17c798xm4rw4xkybqj7c76a319xnjcx33"; 616 } 617 { 618 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-darwin-arm64.tar.gz"; ··· 627 sha256 = "0ilqpzcjfnj0496s5pagzsykp5sjxm1a72gxyp33pk5wjcic7la5"; 628 } 629 { 630 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-darwin-arm64.tar.gz"; 631 - sha256 = "1ws5c2aki0r01y1m1bw9pnpvipbybhdffgmi82gp8mrbln1njbmw"; 632 } 633 { 634 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-darwin-arm64.tar.gz";
··· 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 { }: 3 { 4 + version = "3.186.0"; 5 pulumiPkgs = { 6 x86_64-linux = [ 7 { 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.186.0-linux-x64.tar.gz"; 9 + sha256 = "0ybg8dp8n0k46xhslj9h49mvw4hnl5h86w1kllcm579pn402lnm0"; 10 } 11 { 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-amd64.tar.gz"; ··· 33 sha256 = "1fwfvjjds143f79a9qjpr5vycahy11cd7zydrqgaan9q2djp3kq3"; 34 } 35 { 36 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-amd64.tar.gz"; 37 + sha256 = "0ivwl6j8ws22lhw4w94450pbri6lvxg3san1hy3bs2gdhp4p7xcz"; 38 } 39 { 40 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-linux-amd64.tar.gz"; ··· 77 sha256 = "13s55pl27q8lxlizzdz73i1h4cvi4pvszfns9jk8wsh2kc1h1qxz"; 78 } 79 { 80 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-linux-amd64.tar.gz"; 81 + sha256 = "192bz3xl0hiy3k68fgcb9mw6j1hb6ngrahf53h8zb7agikzwiy3m"; 82 } 83 { 84 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-linux-amd64.tar.gz"; ··· 89 sha256 = "1zra1ck64gs4nwqf62ksfmpbx24lxw6vsgi47j4v8q051m89fgq3"; 90 } 91 { 92 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.1-linux-amd64.tar.gz"; 93 + sha256 = "1rgkab1ira6jpgk0vzby5vp4bvymsz8ysb4q7lnb4zgb19yrd682"; 94 } 95 { 96 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-amd64.tar.gz"; ··· 105 sha256 = "192gnwf3kzhy3lzy3d1kvdggrjk9ixi9phq44x35w2pizh13xazn"; 106 } 107 { 108 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.11-linux-amd64.tar.gz"; 109 + sha256 = "0sawhhcmnhgwdv3wl05z65parmrc74mgk2cpyhgp0hcvbpgagknj"; 110 } 111 { 112 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-linux-amd64.tar.gz"; ··· 117 sha256 = "0j73752fpljn2gydw1jzp8dknrvx2qcldjjqmd7yigf9spbnagj5"; 118 } 119 { 120 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.3-linux-amd64.tar.gz"; 121 + sha256 = "1n3ndir2n1pq4mmnbkiqvv0rf3w4dgz3a9b221vimsi2lks212kw"; 122 } 123 { 124 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.3.0-linux-amd64.tar.gz"; 125 + sha256 = "1az2j303s5f2h3hrkg7d0wjbkg6kcbj1kw7i3b2scslksvk3pf3g"; 126 } 127 { 128 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-linux-amd64.tar.gz"; 129 + sha256 = "1br6v7ypkvpgkrw4a5bjv5qpwici80aksz4cin5c7fnh1ic96cha"; 130 } 131 { 132 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-amd64.tar.gz"; ··· 137 sha256 = "11rpismkdrbvcmfcx49i8wh7c959dm9hm6h6zbw1y0fllqyhhiqv"; 138 } 139 { 140 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.1-linux-amd64.tar.gz"; 141 + sha256 = "1cwmszvx6q63pdwyv96aphcz42b8vh574x0p02g5qas2d06ynhik"; 142 } 143 { 144 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-linux-amd64.tar.gz"; ··· 153 sha256 = "14ga54m7xakk5r8bvxhqh88fh6zvd07rsg5gsria0rcganf9kwd6"; 154 } 155 { 156 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.10-linux-amd64.tar.gz"; 157 + sha256 = "0pbf995jvp3fkvnqdv2ds0zf3yr88rh61i9q4ab7b3141hsghvha"; 158 } 159 { 160 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-linux-amd64.tar.gz"; ··· 163 ]; 164 x86_64-darwin = [ 165 { 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.186.0-darwin-x64.tar.gz"; 167 + sha256 = "0dc8y8z724w35rlz4mjr4gqswpx3vbx6bhiii29ycrakgvs0a8dj"; 168 } 169 { 170 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-amd64.tar.gz"; ··· 191 sha256 = "0knw6l997znyk6x05i7f5haaxl40jpm0vwhhf11rypqhl16k5019"; 192 } 193 { 194 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-amd64.tar.gz"; 195 + sha256 = "09rn3w7fxkzf2g9rapk52c92039dfrrgx914pkcafg74cs3920ik"; 196 } 197 { 198 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-darwin-amd64.tar.gz"; ··· 235 sha256 = "0vr71abg73xh8b7j7w2gb4c18f72jsz9pzg2ihr29a18mdx9l78b"; 236 } 237 { 238 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-darwin-amd64.tar.gz"; 239 + sha256 = "0bsfi36kihw2334gs39z9gwm6gwr0bypbcx7wfckj5zzml94jg6y"; 240 } 241 { 242 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-darwin-amd64.tar.gz"; ··· 247 sha256 = "0ddd0pgpyywq291r9q8w6bn41r2px595017iihx4n2cnb1c4v6d5"; 248 } 249 { 250 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.1-darwin-amd64.tar.gz"; 251 + sha256 = "1wpqvj9rd57q1jlgry99ibyhrdqh8qz3ynckqlj61ipf4lr0z80z"; 252 } 253 { 254 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-amd64.tar.gz"; ··· 263 sha256 = "11341v1nkr2y0pj3k9d79xwqgwjwxdh4y2zg04qqjrdrikv36n85"; 264 } 265 { 266 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.11-darwin-amd64.tar.gz"; 267 + sha256 = "18hxq1kmaxb6xjajcm84zjc3crpaqh412mkrs0xai97p3pbdfkzn"; 268 } 269 { 270 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-darwin-amd64.tar.gz"; ··· 275 sha256 = "1pfkqfviizl1n0kvnm90r02vrnmda0k4a7bhy52dask4vvb3g387"; 276 } 277 { 278 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.3-darwin-amd64.tar.gz"; 279 + sha256 = "1b3znzx5m20xlvmgj9njmip7q32fs6hm62zfckra73bqh2mc9492"; 280 } 281 { 282 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.3.0-darwin-amd64.tar.gz"; 283 + sha256 = "0l7pq5biv5p1m9mdwd1mx2cmak0d71j7dgbkdnvwmcvgqapvl1hz"; 284 } 285 { 286 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-darwin-amd64.tar.gz"; 287 + sha256 = "1b78ygzv4xnfl9j2h2a9mj10s7mvd706wr1dmqbkha1fcdrlqrm9"; 288 } 289 { 290 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-amd64.tar.gz"; ··· 295 sha256 = "1fgrnw3vhclfld28rdg6rkr21gfp1q8bxdbkrsim5lvzi80ih18s"; 296 } 297 { 298 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.1-darwin-amd64.tar.gz"; 299 + sha256 = "1864rxhdwxqx31kkvfid7n91ia5in6x7q9dqql79kpf9v89zhbcy"; 300 } 301 { 302 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-darwin-amd64.tar.gz"; ··· 311 sha256 = "1i5nlxkbzmjxlkcxbf35vvffz8y4f9vnh7bwnvqd31s1ccxv8f89"; 312 } 313 { 314 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.10-darwin-amd64.tar.gz"; 315 + sha256 = "1h43zanz810i2p0x12hp60r6k5rfkr5lvh49l32090xj1v6cr8la"; 316 } 317 { 318 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-darwin-amd64.tar.gz"; ··· 321 ]; 322 aarch64-linux = [ 323 { 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.186.0-linux-arm64.tar.gz"; 325 + sha256 = "0nfyig3w2k3xj9x5v0vcdxbdp87rr6iwg9ch8dh9nx4jqkch52ny"; 326 } 327 { 328 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-linux-arm64.tar.gz"; ··· 349 sha256 = "10w4i3mqlxzvhy4bk7g9kz5bj8xv0yxh6b47n138lqxp8q1cc4yw"; 350 } 351 { 352 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-linux-arm64.tar.gz"; 353 + sha256 = "0gvqc91xd2sk2w5zmvy11m5a92kgry43sajvnlwd8hx04byhlw2s"; 354 } 355 { 356 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-linux-arm64.tar.gz"; ··· 393 sha256 = "1cn7n1na4igb69wi3yyxmhiai7p8c1qn47cgwpzqj1l279jjx2vk"; 394 } 395 { 396 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-linux-arm64.tar.gz"; 397 + sha256 = "1nfsgjfas5md9k67n90hcvcza7gg2iwp9wivmfzf49vz2k25iz44"; 398 } 399 { 400 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-linux-arm64.tar.gz"; ··· 405 sha256 = "0d8m2krbzxjhfm82dgf8p4vm3kk9gk98l798q4ayjrddqqb4mxq4"; 406 } 407 { 408 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.1-linux-arm64.tar.gz"; 409 + sha256 = "189dxlwnzmygmclbaqlp599cfp7byg329fxjkp3nb8g05sij0407"; 410 } 411 { 412 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-arm64.tar.gz"; ··· 421 sha256 = "17920c9wlaf5yg9q890ypc55d1h1yk8l1jbvgk97g9qdjsm7bia6"; 422 } 423 { 424 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.11-linux-arm64.tar.gz"; 425 + sha256 = "1gd9l1zdkg5faqlfvc5rl9gqchndxhxp742mx21hizhmp4rsv577"; 426 } 427 { 428 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-linux-arm64.tar.gz"; ··· 433 sha256 = "12j121fv3n2p54cmqjbx7yc7p8hqi7sb7bf4pcz6v1mmzxfsfz1c"; 434 } 435 { 436 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.3-linux-arm64.tar.gz"; 437 + sha256 = "02jix4w49n9mal8wg6ixgxvnd865ml7zx0lnz6prckfrzgrj36ih"; 438 } 439 { 440 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.3.0-linux-arm64.tar.gz"; 441 + sha256 = "0p092madaspnpbxaf9fm8cfclfsaz7kb5vd9jjljihvmmhk90zkc"; 442 } 443 { 444 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-linux-arm64.tar.gz"; 445 + sha256 = "12xrcps6dw8z2alghbf7xjqmnpcf8bcgdqggdsmnyal61zpr2ghz"; 446 } 447 { 448 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-arm64.tar.gz"; ··· 453 sha256 = "1dz5d91x40l1fh513b45bphfvx6pc7gzzb3n3h72ssmg2x09rf76"; 454 } 455 { 456 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.1-linux-arm64.tar.gz"; 457 + sha256 = "1pl4kn79j8ha270q2vkx5rcapslx7yhxja13ssggn2api1zi4w6d"; 458 } 459 { 460 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-linux-arm64.tar.gz"; ··· 469 sha256 = "08s8asqcl859sm7ifaysdk0d14bwyiridnk16f64k4prdiq6dqii"; 470 } 471 { 472 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.10-linux-arm64.tar.gz"; 473 + sha256 = "113czcq1fm2dywn8q5v1z5lyz4l30b1433hrdjnfkr8qwzxncr48"; 474 } 475 { 476 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-linux-arm64.tar.gz"; ··· 479 ]; 480 aarch64-darwin = [ 481 { 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.186.0-darwin-arm64.tar.gz"; 483 + sha256 = "0ihk3k2b06hjyspmhfsrv16ybm42zibf4qyw19r5r9spjknk70lg"; 484 } 485 { 486 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.41.0-darwin-arm64.tar.gz"; ··· 507 sha256 = "0ndkxq2vpppq2ygq0b81w72hnx8sb6ckdhcrx62gp9nfq5ya8y69"; 508 } 509 { 510 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.2-darwin-arm64.tar.gz"; 511 + sha256 = "0vp65ccimrzhbg3h7rq1p18rjwhb2b4s0y90wvan22nsvwnv5b0p"; 512 } 513 { 514 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.10.0-darwin-arm64.tar.gz"; ··· 551 sha256 = "1kammj8rsawv2qjw7a01skf7qdzjgprfkapbgypfsqcmlsmphy93"; 552 } 553 { 554 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.3-darwin-arm64.tar.gz"; 555 + sha256 = "13il7mq0g853x1nllvxnhbhflrlqx8i11p4xkg46bvshay15xh9x"; 556 } 557 { 558 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v9.2.0-darwin-arm64.tar.gz"; ··· 563 sha256 = "0caz4kgnnrmdr7n571xc7yqscac9jnjwwpjzbnvx4ib6a91wvsdn"; 564 } 565 { 566 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.1-darwin-arm64.tar.gz"; 567 + sha256 = "0njqqjslzgdks3cjv8bgg915llrssz4zxvnmcxb30cx44141lkav"; 568 } 569 { 570 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-arm64.tar.gz"; ··· 579 sha256 = "1lg4jqficsy58wyl52gwqx5ch1wmasnz96ipcyci79dlpz6dbksg"; 580 } 581 { 582 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.11-darwin-arm64.tar.gz"; 583 + sha256 = "0n1wmplyj2c5qhaq0gplphi8p2i7g4jwrnlwzkv0m1wixrlx3fw5"; 584 } 585 { 586 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v5.3.2-darwin-arm64.tar.gz"; ··· 591 sha256 = "1braby52wys2ddfbb99yhhn6n3izr4sc70b7jl6ryrb6b17qqk0f"; 592 } 593 { 594 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.18.3-darwin-arm64.tar.gz"; 595 + sha256 = "1bb3bzybmfi5blagh13bm6q1avjbp80lmjdv4q5yc2dbfbs653xi"; 596 } 597 { 598 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.3.0-darwin-arm64.tar.gz"; 599 + sha256 = "1s5h9d6jlvj2dqid1pmil74vwb82n1a6f6w3dvspm63mwjrxdmbj"; 600 } 601 { 602 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.123.1-darwin-arm64.tar.gz"; 603 + sha256 = "1n3p9y26q7qc3ji9l4yrzxkravmmfb3gvs7xj4lyfy1ll312dq4d"; 604 } 605 { 606 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-arm64.tar.gz"; ··· 611 sha256 = "0pywbp952p7n1gh1rwdxkk1nvp7ri4kzanvi4qs3ca1nw7dvalqy"; 612 } 613 { 614 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.2.1-darwin-arm64.tar.gz"; 615 + sha256 = "0mz13356yyml557s5bxm0f30ypxjkv399jn6bacy5isi7qlv4d01"; 616 } 617 { 618 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v7.1.0-darwin-arm64.tar.gz"; ··· 627 sha256 = "0ilqpzcjfnj0496s5pagzsykp5sjxm1a72gxyp33pk5wjcic7la5"; 628 } 629 { 630 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.10-darwin-arm64.tar.gz"; 631 + sha256 = "1ga7zvw6przmkbcpi3vq081g4bh8p4bzrfhi3jyxd6kh4slb3g9d"; 632 } 633 { 634 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-yandex-v0.13.0-darwin-arm64.tar.gz";
+4
pkgs/top-level/python-packages.nix
··· 13277 13278 pymongo-inmemory = callPackage ../development/python-modules/pymongo-inmemory { }; 13279 13280 pymoo = callPackage ../development/python-modules/pymoo { }; 13281 13282 pymorphy2 = callPackage ../development/python-modules/pymorphy2 { }; ··· 14577 python-izone = callPackage ../development/python-modules/python-izone { }; 14578 14579 python-jenkins = callPackage ../development/python-modules/python-jenkins { }; 14580 14581 python-jose = callPackage ../development/python-modules/python-jose { }; 14582
··· 13277 13278 pymongo-inmemory = callPackage ../development/python-modules/pymongo-inmemory { }; 13279 13280 + pymonoprice = callPackage ../development/python-modules/pymonoprice { }; 13281 + 13282 pymoo = callPackage ../development/python-modules/pymoo { }; 13283 13284 pymorphy2 = callPackage ../development/python-modules/pymorphy2 { }; ··· 14579 python-izone = callPackage ../development/python-modules/python-izone { }; 14580 14581 python-jenkins = callPackage ../development/python-modules/python-jenkins { }; 14582 + 14583 + python-join-api = callPackage ../development/python-modules/python-join-api { }; 14584 14585 python-jose = callPackage ../development/python-modules/python-jose { }; 14586