lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
025b892d c9039a01

+1875 -741
+6 -6
doc/hooks/zig.section.md
··· 1 - # zigHook {#zighook} 1 + # zig.hook {#zig-hook} 2 2 3 3 [Zig](https://ziglang.org/) is a general-purpose programming language and toolchain for maintaining robust, optimal and reusable software. 4 4 5 - In Nixpkgs, `zigHook` overrides the default build, check and install phases. 5 + In Nixpkgs, `zig.hook` overrides the default build, check and install phases. 6 6 7 7 ## Example code snippet {#example-code-snippet} 8 8 9 9 ```nix 10 10 { lib 11 11 , stdenv 12 - , zigHook 12 + , zig_0_11 13 13 }: 14 14 15 15 stdenv.mkDerivation { 16 16 # . . . 17 17 18 18 nativeBuildInputs = [ 19 - zigHook 19 + zig_0_11.hook 20 20 ]; 21 21 22 22 zigBuildFlags = [ "-Dman-pages=true" ]; ··· 27 27 } 28 28 ``` 29 29 30 - ## Variables controlling zigHook {#variables-controlling-zighook} 30 + ## Variables controlling zig.hook {#variables-controlling-zig-hook} 31 31 32 32 ### `dontUseZigBuild` {#dontUseZigBuild} 33 33 ··· 53 53 54 54 Controls the flags passed to the install phase. 55 55 56 - ### Variables honored by zigHook {#variablesHonoredByZigHook} 56 + ### Variables honored by zig.hook {#variables-honored-by-zig-hook} 57 57 58 58 - `prefixKey` 59 59 - `dontAddPrefix`
+6
maintainers/maintainer-list.nix
··· 12428 12428 githubId = 15707703; 12429 12429 name = "Helmi Nour"; 12430 12430 }; 12431 + nrhtr = { 12432 + email = "jeremy@jenga.xyz"; 12433 + github = "nrhtr"; 12434 + githubId = 74261; 12435 + name = "Jeremy Parker"; 12436 + }; 12431 12437 nshalman = { 12432 12438 email = "nahamu@gmail.com"; 12433 12439 github = "nshalman";
-1
nixos/modules/config/malloc.nix
··· 97 97 }; 98 98 99 99 config = mkIf (cfg.provider != "libc") { 100 - boot.kernel.sysctl."vm.max_map_count" = mkIf (cfg.provider == "graphene-hardened") (mkDefault 1048576); # TODO: Default vm.max_map_count has been increased system-wide 101 100 environment.etc."ld-nix.so.preload".text = '' 102 101 ${providerLibPath} 103 102 '';
+13 -1
nixos/modules/services/networking/ntp/chrony.nix
··· 27 27 ${cfg.extraConfig} 28 28 ''; 29 29 30 - chronyFlags = [ "-n" "-m" "-u" "chrony" "-f" "${configFile}" ] ++ cfg.extraFlags; 30 + chronyFlags = 31 + [ "-n" "-u" "chrony" "-f" "${configFile}" ] 32 + ++ optional cfg.enableMemoryLocking "-m" 33 + ++ cfg.extraFlags; 31 34 in 32 35 { 33 36 options = { ··· 70 73 71 74 Use "offline" to prevent polling on startup. Recommended if your 72 75 machine boots offline or is otherwise frequently offline. 76 + ''; 77 + }; 78 + 79 + enableMemoryLocking = mkOption { 80 + type = types.bool; 81 + default = config.environment.memoryAllocator.provider != "graphene-hardened"; 82 + defaultText = ''config.environment.memoryAllocator.provider != "graphene-hardened"''; 83 + description = lib.mdDoc '' 84 + Whether to add the `-m` flag to lock memory. 73 85 ''; 74 86 }; 75 87
+1
nixos/tests/all-tests.nix
··· 167 167 cgit = handleTest ./cgit.nix {}; 168 168 charliecloud = handleTest ./charliecloud.nix {}; 169 169 chromium = (handleTestOn ["aarch64-linux" "x86_64-linux"] ./chromium.nix {}).stable or {}; 170 + chrony = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony.nix {}; 170 171 chrony-ptp = handleTestOn ["aarch64-linux" "x86_64-linux"] ./chrony-ptp.nix {}; 171 172 cinnamon = handleTest ./cinnamon.nix {}; 172 173 cjdns = handleTest ./cjdns.nix {};
+31
nixos/tests/chrony.nix
··· 1 + import ./make-test-python.nix ({ lib, ... }: 2 + { 3 + name = "chrony"; 4 + 5 + meta = { 6 + maintainers = with lib.maintainers; [ fpletz ]; 7 + }; 8 + 9 + nodes = { 10 + default = { 11 + services.chrony.enable = true; 12 + }; 13 + graphene-hardened = { 14 + services.chrony.enable = true; 15 + services.chrony.enableMemoryLocking = true; 16 + environment.memoryAllocator.provider = "graphene-hardened"; 17 + # dhcpcd privsep is incompatible with graphene-hardened 18 + networking.useNetworkd = true; 19 + }; 20 + }; 21 + 22 + testScript = {nodes, ...} : let 23 + graphene-hardened = nodes.graphene-hardened.system.build.toplevel; 24 + in '' 25 + default.start() 26 + default.wait_for_unit('multi-user.target') 27 + default.succeed('systemctl is-active chronyd.service') 28 + default.succeed('${graphene-hardened}/bin/switch-to-configuration test') 29 + default.succeed('systemctl is-active chronyd.service') 30 + ''; 31 + })
+2 -2
nixos/tests/nextcloud/basic.nix
··· 90 90 test -e graph 91 91 grep "$what" graph >$out || true 92 92 ''; 93 - nextcloudUsesImagick = findInClosure "imagick" nodes.nextcloud.config.system.build.vm; 94 - nextcloudWithoutDoesntUseIt = findInClosure "imagick" nodes.nextcloudWithoutMagick.config.system.build.vm; 93 + nextcloudUsesImagick = findInClosure "imagick" nodes.nextcloud.system.build.vm; 94 + nextcloudWithoutDoesntUseIt = findInClosure "imagick" nodes.nextcloudWithoutMagick.system.build.vm; 95 95 in '' 96 96 assert open("${nextcloudUsesImagick}").read() != "" 97 97 assert open("${nextcloudWithoutDoesntUseIt}").read() == ""
+2 -2
nixos/tests/nextcloud/openssl-sse.nix
··· 49 49 #!${pkgs.runtimeShell} 50 50 echo 'bye' | ${withRcloneEnv3} ${pkgs.rclone}/bin/rclone rcat nextcloud:test-shared-file2 51 51 ''; 52 - openssl1-node = nodes.nextcloudwithopenssl1.config.system.build.toplevel; 53 - openssl3-node = nodes.nextcloudwithopenssl3.config.system.build.toplevel; 52 + openssl1-node = nodes.nextcloudwithopenssl1.system.build.toplevel; 53 + openssl3-node = nodes.nextcloudwithopenssl3.system.build.toplevel; 54 54 in '' 55 55 nextcloudwithopenssl1.start() 56 56 nextcloudwithopenssl1.wait_for_unit("multi-user.target")
+114 -102
pkgs/applications/editors/vim/plugins/generated.nix
··· 305 305 306 306 SchemaStore-nvim = buildVimPluginFrom2Nix { 307 307 pname = "SchemaStore.nvim"; 308 - version = "2023-08-07"; 308 + version = "2023-08-09"; 309 309 src = fetchFromGitHub { 310 310 owner = "b0o"; 311 311 repo = "SchemaStore.nvim"; 312 - rev = "335c2f9e130b90a92a1bfac448bb9915894fb5b6"; 313 - sha256 = "1zgbxqv1n4mnl5l4y1z33kb5g372jwfjxhqpsq8fvk4ilv0g2xfh"; 312 + rev = "bde2101ad0b6f9af67aec02817985ae52ec3bac1"; 313 + sha256 = "18319famm8d4gsck4n2v2yghb3d91fjcrnlmp85v0p146gc5k9l3"; 314 314 }; 315 315 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 316 }; ··· 377 377 378 378 SpaceVim = buildVimPluginFrom2Nix { 379 379 pname = "SpaceVim"; 380 - version = "2023-08-07"; 380 + version = "2023-08-09"; 381 381 src = fetchFromGitHub { 382 382 owner = "SpaceVim"; 383 383 repo = "SpaceVim"; 384 - rev = "1c2832a0a70b4908cd4334593df6ec81c479e6d8"; 385 - sha256 = "0dfmgv6zmabx1zqqz68qcgl9a2jnmiq3nxlpw5lym4jvrss8pyad"; 384 + rev = "100aa31e52b13e69d61caeb1796581e4bbb3b9ca"; 385 + sha256 = "1ygswc0l9q8m3h3b42ik5zkhf820xpzs1iiivf2x7wpqc8589j2v"; 386 386 }; 387 387 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 388 388 }; ··· 847 847 848 848 auto-session = buildVimPluginFrom2Nix { 849 849 pname = "auto-session"; 850 - version = "2023-06-13"; 850 + version = "2023-08-08"; 851 851 src = fetchFromGitHub { 852 852 owner = "rmagatti"; 853 853 repo = "auto-session"; 854 - rev = "7afbb149f87be279778689596c781882014f7eef"; 855 - sha256 = "07v8ssjrl5ayrayyg5k137xzv2pcpha0m4y41qyyf0ys150nnqvf"; 854 + rev = "c61fa86a43fde1ad6b503fd14002260dbaa4d923"; 855 + sha256 = "0hgdyfs7f9k511vlp5xdna6dgd1dbcxnzkify6mi6m69pbay5h0j"; 856 856 }; 857 857 meta.homepage = "https://github.com/rmagatti/auto-session/"; 858 858 }; ··· 1231 1231 1232 1232 chadtree = buildVimPluginFrom2Nix { 1233 1233 pname = "chadtree"; 1234 - version = "2023-08-07"; 1234 + version = "2023-08-08"; 1235 1235 src = fetchFromGitHub { 1236 1236 owner = "ms-jpq"; 1237 1237 repo = "chadtree"; 1238 - rev = "62bd10d662d1845934c8173788a9f514e23ae925"; 1239 - sha256 = "0ydl4qbvcjzzylgrm3nggxa6i2gv0dvb612ad6f98lqf1njaz30p"; 1238 + rev = "0805b8630b24f028f28151c04c1d8291adf4bdb0"; 1239 + sha256 = "16jzq1rh86cd6cwkgxvfj500msmlmld0zkxkiq5pmbmcawbkhmz6"; 1240 1240 }; 1241 1241 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 1242 1242 }; ··· 2395 2395 2396 2396 crates-nvim = buildVimPluginFrom2Nix { 2397 2397 pname = "crates.nvim"; 2398 - version = "2023-07-02"; 2398 + version = "2023-08-08"; 2399 2399 src = fetchFromGitHub { 2400 2400 owner = "saecki"; 2401 2401 repo = "crates.nvim"; 2402 - rev = "4ce7c51b881e58f1e2f8f437f30e4e583cbac319"; 2403 - sha256 = "1j3812in0wr2ssc79gqibf446awlf5j1pv5xp2qpyrp4di79y7va"; 2402 + rev = "d5caf28aba49e81ac4099426231f3cf3c151013a"; 2403 + sha256 = "166yinmn8fqmsgdbswn0vjcz3c3d7axckzwkrsz7v8vk9yhnmnyk"; 2404 2404 }; 2405 2405 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2406 2406 }; ··· 2973 2973 2974 2974 dressing-nvim = buildVimPluginFrom2Nix { 2975 2975 pname = "dressing.nvim"; 2976 - version = "2023-08-07"; 2976 + version = "2023-08-08"; 2977 2977 src = fetchFromGitHub { 2978 2978 owner = "stevearc"; 2979 2979 repo = "dressing.nvim"; 2980 - rev = "713b56e13c58ad519920e0e634763345cb4fc832"; 2981 - sha256 = "0a0hfiaxd5mn5197wciamacx8s99m917vzqmvvl97839yap00xl9"; 2980 + rev = "c0b67f3e2950adc07b555d3e73e38275b4a585ce"; 2981 + sha256 = "1kc22lhvz89bx94ysh5l4xn3s1r49lqivzg9fz7rrh1v7zwndlfz"; 2982 2982 }; 2983 2983 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2984 2984 }; ··· 3070 3070 3071 3071 elixir-tools-nvim = buildVimPluginFrom2Nix { 3072 3072 pname = "elixir-tools.nvim"; 3073 - version = "2023-08-01"; 3073 + version = "2023-08-09"; 3074 3074 src = fetchFromGitHub { 3075 3075 owner = "elixir-tools"; 3076 3076 repo = "elixir-tools.nvim"; 3077 - rev = "4fd1c3df49a4f410ac8ae63de4189e3e534a742e"; 3078 - sha256 = "0imd25gi96g5fq988dlk1w60hcpgdxbhzln74sj2qk2h076ffn57"; 3077 + rev = "adb51b4ff66ccd1ece8d77e2f88e2a90bfa4a9df"; 3078 + sha256 = "1ks96nn4q1rr7pp327avxx5frni00yfs8ysfnni61nkbc91dw5ns"; 3079 3079 }; 3080 3080 meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; 3081 3081 }; ··· 3720 3720 3721 3721 gitsigns-nvim = buildNeovimPlugin { 3722 3722 pname = "gitsigns.nvim"; 3723 - version = "2023-08-08"; 3723 + version = "2023-08-09"; 3724 3724 src = fetchFromGitHub { 3725 3725 owner = "lewis6991"; 3726 3726 repo = "gitsigns.nvim"; 3727 - rev = "287fffb410ce82d19da2d503a1f1570adf7b7874"; 3728 - sha256 = "00cg45dascmbnfmb0lhvxcm82f597bmmy5sh003c0amsn0zc7k30"; 3727 + rev = "bae45ef449d8811061cc940459e70e883a3aa83a"; 3728 + sha256 = "0ns6qhw79fjxns6x36474dsl6ihqw2sxxm126bpgi9612cq134gs"; 3729 3729 }; 3730 3730 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 3731 3731 }; ··· 3780 3780 3781 3781 go-nvim = buildVimPluginFrom2Nix { 3782 3782 pname = "go.nvim"; 3783 - version = "2023-08-08"; 3783 + version = "2023-08-09"; 3784 3784 src = fetchFromGitHub { 3785 3785 owner = "ray-x"; 3786 3786 repo = "go.nvim"; 3787 - rev = "44bd0589ad22e2bb91f2ed75624c4a3bab0e5f59"; 3788 - sha256 = "15s8k9hb6j63xj0q6b3ir1m76diyh4wf8p82606yd142jnin80ni"; 3787 + rev = "c61f9371cdaaec40cccf0783ff968bee83df5bda"; 3788 + sha256 = "0ij9b42qagjaakvckqq1gpja93qy1hw83lqj8lpl0ysqwx5q4dnq"; 3789 3789 }; 3790 3790 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3791 3791 }; ··· 5051 5051 5052 5052 lsp-zero-nvim = buildVimPluginFrom2Nix { 5053 5053 pname = "lsp-zero.nvim"; 5054 - version = "2023-07-28"; 5054 + version = "2023-08-08"; 5055 5055 src = fetchFromGitHub { 5056 5056 owner = "VonHeikemen"; 5057 5057 repo = "lsp-zero.nvim"; 5058 - rev = "7bcbd67298237d4c7a958715bc99f25f20702c6e"; 5059 - sha256 = "0q61hfk3dsa6pgx25iqxz4r1r25mcizi0lbyvv88nn5fdvg8lv74"; 5058 + rev = "fc3a15047a5b831c83143d90cd25d0b7bcfd0111"; 5059 + sha256 = "0rzipjbzb57hwgclbpjww9vgn3x2arp8a831lfc4a0ij8cr223cc"; 5060 5060 }; 5061 5061 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 5062 5062 }; ··· 5291 5291 5292 5292 mason-nvim = buildVimPluginFrom2Nix { 5293 5293 pname = "mason.nvim"; 5294 - version = "2023-07-25"; 5294 + version = "2023-08-09"; 5295 5295 src = fetchFromGitHub { 5296 5296 owner = "williamboman"; 5297 5297 repo = "mason.nvim"; 5298 - rev = "fe9e34a9ab4d64321cdc3ecab4ea1809239bb73f"; 5299 - sha256 = "1yvf5hml1nhglmfaa0da5mjmgxaysc8x8k1rk820vpj5f1bhl70p"; 5298 + rev = "74eac861b013786bf231b204b4ba9a7d380f4bd9"; 5299 + sha256 = "0d0h93q23k8l6czxy5sql595dsqk901aqhmsmincawnycin2ip0x"; 5300 5300 }; 5301 5301 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 5302 5302 }; ··· 5363 5363 5364 5364 melange-nvim = buildVimPluginFrom2Nix { 5365 5365 pname = "melange-nvim"; 5366 - version = "2023-07-09"; 5366 + version = "2023-08-08"; 5367 5367 src = fetchFromGitHub { 5368 5368 owner = "savq"; 5369 5369 repo = "melange-nvim"; 5370 - rev = "e4958aa60ec6e1c5ecb487b9028da3a33e753b34"; 5371 - sha256 = "0ck5f47hww48msqq7qpbd3rcg5mjwf87lf4zwg9k27vfln1sfg90"; 5370 + rev = "11f35df3e091f35e966a335ed90b0d8a03851ffd"; 5371 + sha256 = "0s0pb1cgx40zcxjy7axx06ix4zl5f8i3gi86rqy2qsagzp1adbf6"; 5372 5372 }; 5373 5373 meta.homepage = "https://github.com/savq/melange-nvim/"; 5374 5374 }; 5375 5375 5376 5376 mini-nvim = buildVimPluginFrom2Nix { 5377 5377 pname = "mini.nvim"; 5378 - version = "2023-08-06"; 5378 + version = "2023-08-08"; 5379 5379 src = fetchFromGitHub { 5380 5380 owner = "echasnovski"; 5381 5381 repo = "mini.nvim"; 5382 - rev = "98398ff0a803b1c40354f5591ae59766b88e01a7"; 5383 - sha256 = "0a49cx19ln8yxr47afr3424qkqp03qhg6ram7mpql1w892f3gp6n"; 5382 + rev = "1b52c4ce7880b95d6c80eeb3cfe8e2da27d19db4"; 5383 + sha256 = "02262ykxldwxhwf6aw0q9hsz3qda43qcj770hmr1fn6xmg4b6zyl"; 5384 5384 }; 5385 5385 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 5386 5386 }; ··· 5771 5771 5772 5772 neodev-nvim = buildVimPluginFrom2Nix { 5773 5773 pname = "neodev.nvim"; 5774 - version = "2023-08-05"; 5774 + version = "2023-08-09"; 5775 5775 src = fetchFromGitHub { 5776 5776 owner = "folke"; 5777 5777 repo = "neodev.nvim"; 5778 - rev = "9f0205a08757711f57589a1dffa8abf525f4a23b"; 5779 - sha256 = "1bhwzpsg8ajk6nr6lcfxfmshssj0fk645j04x3r6yfzdyynmrsvi"; 5778 + rev = "461519d5a0023a73cb46d21392751d0731eacec8"; 5779 + sha256 = "0fzz3hhg3arc789prpmvlijmcvl4djax9ry78jzyvipbybcr33s2"; 5780 5780 }; 5781 5781 meta.homepage = "https://github.com/folke/neodev.nvim/"; 5782 5782 }; ··· 5807 5807 5808 5808 neogit = buildVimPluginFrom2Nix { 5809 5809 pname = "neogit"; 5810 - version = "2023-08-08"; 5810 + version = "2023-08-09"; 5811 5811 src = fetchFromGitHub { 5812 5812 owner = "NeogitOrg"; 5813 5813 repo = "neogit"; 5814 - rev = "09f8f64d5b28ad3dcdc173beb60efe6a78301064"; 5815 - sha256 = "0bz3gjbjlibr4qvkibg9c59gpynxmi3mrza5ild9zdfjixl1zx11"; 5814 + rev = "5588603ce59d4b0c2f7c12493356b14c6b150488"; 5815 + sha256 = "0jrw02yxazjj4s0akkzqfl4jnadjjqs4ass8gisbpmi9rydvs9mk"; 5816 5816 }; 5817 5817 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 5818 5818 }; ··· 5867 5867 5868 5868 neorg = buildVimPluginFrom2Nix { 5869 5869 pname = "neorg"; 5870 - version = "2023-08-07"; 5870 + version = "2023-08-09"; 5871 5871 src = fetchFromGitHub { 5872 5872 owner = "nvim-neorg"; 5873 5873 repo = "neorg"; 5874 - rev = "92f2e9d4a7bfdbb7ed0e9dcd9b8768db63188149"; 5875 - sha256 = "1li3mci8n9cqpjdcb3nm769aa7c4ydia9br3k0gbmmd5pgn98v9q"; 5874 + rev = "66e5a4e4ed7645590ac8388abdedb8f840b88f0d"; 5875 + sha256 = "13bknfk2vhc9k8jcfgdf96nmi7g6b1c4n54dkwqrils6dycv0qcp"; 5876 5876 }; 5877 5877 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5878 5878 }; ··· 6083 6083 6084 6084 neotest-rspec = buildVimPluginFrom2Nix { 6085 6085 pname = "neotest-rspec"; 6086 - version = "2023-07-29"; 6086 + version = "2023-08-08"; 6087 6087 src = fetchFromGitHub { 6088 6088 owner = "olimorris"; 6089 6089 repo = "neotest-rspec"; 6090 - rev = "7f03e1e1f8cc18f9dd22ebccdff254cd7b167fbd"; 6091 - sha256 = "10w1qh18j9p1s06r96m5d7f1izs2vgi74fihhmy4gqc4d8gqvn3r"; 6090 + rev = "df53627929924ffd716d5ff5de79da17cd4baa95"; 6091 + sha256 = "1qm1mhv8bk3qj7gywxn913qyba37p9ly52zbw9554qxda1jjwc9x"; 6092 6092 }; 6093 6093 meta.homepage = "https://github.com/olimorris/neotest-rspec/"; 6094 6094 }; ··· 6455 6455 6456 6456 nvchad = buildVimPluginFrom2Nix { 6457 6457 pname = "nvchad"; 6458 - version = "2023-08-06"; 6458 + version = "2023-08-09"; 6459 6459 src = fetchFromGitHub { 6460 6460 owner = "nvchad"; 6461 6461 repo = "nvchad"; 6462 - rev = "6766acefece875c46948fb25f9231a1ace6a11a1"; 6463 - sha256 = "1chv0qyc4k53bpvdb9kdm4r31y0p0m65fskn256v2k01jk0vrdxw"; 6462 + rev = "46a61073a82087f9e339dab6de2b2f94c051b070"; 6463 + sha256 = "0349b6wxscn3pn0vg73y6kqid1kdvska80k3g7fykdwd9gswb75v"; 6464 6464 }; 6465 6465 meta.homepage = "https://github.com/nvchad/nvchad/"; 6466 6466 }; ··· 6827 6827 6828 6828 nvim-highlite = buildVimPluginFrom2Nix { 6829 6829 pname = "nvim-highlite"; 6830 - version = "2023-07-29"; 6830 + version = "2023-08-08"; 6831 6831 src = fetchFromGitHub { 6832 6832 owner = "Iron-E"; 6833 6833 repo = "nvim-highlite"; 6834 - rev = "dde074b6465fef5125d190e9a85ae827cf09283f"; 6835 - sha256 = "1higwr7xr9cnsh1aan3sypxpzhwakq29sjwiw8sb9gvhyvjj7ksk"; 6834 + rev = "5967a08f32801782fcf34dad1877a3228f9e2fc5"; 6835 + sha256 = "0wp5sv25dfn68a6vfv96hgs6wmc9cjxwzg4mg0j9mw3kl2bhwc48"; 6836 6836 }; 6837 6837 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 6838 6838 }; ··· 6959 6959 6960 6960 nvim-lspconfig = buildVimPluginFrom2Nix { 6961 6961 pname = "nvim-lspconfig"; 6962 - version = "2023-08-04"; 6962 + version = "2023-08-09"; 6963 6963 src = fetchFromGitHub { 6964 6964 owner = "neovim"; 6965 6965 repo = "nvim-lspconfig"; 6966 - rev = "c0de180ddb3df36feef8ac3607670894d0e7497f"; 6967 - sha256 = "0j1ymayx1c1dycgc50gvq8iv029slc6wzlpj0mbyh60g0wjp7flc"; 6966 + rev = "7c73a4dc44c3d62ee79ab9f03ba313251c0388d4"; 6967 + sha256 = "0k7cly9xmjgpq55izxk3kcrc6289fra3pcpkisslr9jj6qzq3bfq"; 6968 6968 }; 6969 6969 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6970 6970 }; ··· 7295 7295 7296 7296 nvim-treesitter = buildVimPluginFrom2Nix { 7297 7297 pname = "nvim-treesitter"; 7298 - version = "2023-08-08"; 7298 + version = "2023-08-09"; 7299 7299 src = fetchFromGitHub { 7300 7300 owner = "nvim-treesitter"; 7301 7301 repo = "nvim-treesitter"; 7302 - rev = "a9ce9fb7cccf59e0c2f65d26a14942356c93948e"; 7303 - sha256 = "0agl2wl6x378dfa4am36vcd2gdrflb98fssaywicdzlghw9yba4k"; 7302 + rev = "80cee52d445363c8bd08eacca17be31e3837f4d0"; 7303 + sha256 = "0ny0vaz6idv0zn5f90yj33bscm9apd356gh2xfdwill5n0ly29m8"; 7304 7304 }; 7305 7305 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 7306 7306 }; ··· 7534 7534 7535 7535 oil-nvim = buildVimPluginFrom2Nix { 7536 7536 pname = "oil.nvim"; 7537 - version = "2023-07-18"; 7537 + version = "2023-08-09"; 7538 7538 src = fetchFromGitHub { 7539 7539 owner = "stevearc"; 7540 7540 repo = "oil.nvim"; 7541 - rev = "eaa20a6aee7c4df89d80ec8208de63ec2fa4d38a"; 7542 - sha256 = "0zyp32nb0xa882i6rjwgs94icpmwpww22g7v1laz0ldm4vkn0qlj"; 7541 + rev = "0e5fca35cdc743cf3a448cea1a6251cf25cebafa"; 7542 + sha256 = "16imjy6hyy9k1s6krkwl1z5vlra81a6fig2553hmwgndi7cjg3x8"; 7543 7543 fetchSubmodules = true; 7544 7544 }; 7545 7545 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 8078 8078 8079 8079 quick-scope = buildVimPluginFrom2Nix { 8080 8080 pname = "quick-scope"; 8081 - version = "2023-08-01"; 8081 + version = "2023-08-08"; 8082 8082 src = fetchFromGitHub { 8083 8083 owner = "unblevable"; 8084 8084 repo = "quick-scope"; 8085 - rev = "ba61c6250c637a1bc59f7023c23bcaf75e6767cd"; 8086 - sha256 = "10nxagk6wmsmqw03933mbzcph8xg0879qymzjmxjrwrc99vw9l7v"; 8085 + rev = "256d81e391a22eeb53791ff62ce65f870418fa71"; 8086 + sha256 = "037x5lrpgli46a71x05x35ig9jh8l9qsv2azx5s0g78xja6kih2d"; 8087 8087 }; 8088 8088 meta.homepage = "https://github.com/unblevable/quick-scope/"; 8089 8089 }; ··· 8256 8256 meta.homepage = "https://github.com/filipdutescu/renamer.nvim/"; 8257 8257 }; 8258 8258 8259 + replacer-nvim = buildVimPluginFrom2Nix { 8260 + pname = "replacer.nvim"; 8261 + version = "2023-07-29"; 8262 + src = fetchFromGitHub { 8263 + owner = "gabrielpoca"; 8264 + repo = "replacer.nvim"; 8265 + rev = "32e1713230844fa52f7f0598c59295de3c90dc95"; 8266 + sha256 = "0qisyii60gn5siahxc30xham2asmkrch8ph2fs9qk1kdr64h33d5"; 8267 + }; 8268 + meta.homepage = "https://github.com/gabrielpoca/replacer.nvim/"; 8269 + }; 8270 + 8259 8271 rest-nvim = buildNeovimPlugin { 8260 8272 pname = "rest.nvim"; 8261 8273 version = "2023-07-16"; ··· 8522 8534 8523 8535 sg-nvim = buildVimPluginFrom2Nix { 8524 8536 pname = "sg.nvim"; 8525 - version = "2023-08-04"; 8537 + version = "2023-08-08"; 8526 8538 src = fetchFromGitHub { 8527 8539 owner = "sourcegraph"; 8528 8540 repo = "sg.nvim"; 8529 - rev = "2dcef6717643063ebb4215fe7b53ca9bc08c8423"; 8530 - sha256 = "1n11m3gh7ldbgw9vw3k50pb27qfarf99ixrsp5s00ykxwkqcckqc"; 8541 + rev = "6138d659f6a98ebf08d1a9206b456b792b17d52c"; 8542 + sha256 = "0gf533dgin5s6rn7d0wxzz87223vlb9kd8zz6mbwya8bh7gw9966"; 8531 8543 }; 8532 8544 meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; 8533 8545 }; ··· 8848 8860 8849 8861 ssr-nvim = buildVimPluginFrom2Nix { 8850 8862 pname = "ssr.nvim"; 8851 - version = "2023-04-17"; 8863 + version = "2023-08-09"; 8852 8864 src = fetchFromGitHub { 8853 8865 owner = "cshuaimin"; 8854 8866 repo = "ssr.nvim"; 8855 - rev = "e5768511518a397fa712f26389ba30d0404990de"; 8856 - sha256 = "0bw60qf49bb07vhxpg21fkf5v2am4ply3x4z5y5c24lx19fwmryw"; 8867 + rev = "bc9c0d2dd765dafc1b8fecb28d0a317e7913b81f"; 8868 + sha256 = "18hhbq1fbsab3g3n4mj09jwapzra7754hp23w6dsv4nvf8rq27qc"; 8857 8869 }; 8858 8870 meta.homepage = "https://github.com/cshuaimin/ssr.nvim/"; 8859 8871 }; ··· 9282 9294 9283 9295 telescope-frecency-nvim = buildVimPluginFrom2Nix { 9284 9296 pname = "telescope-frecency.nvim"; 9285 - version = "2023-08-07"; 9297 + version = "2023-08-09"; 9286 9298 src = fetchFromGitHub { 9287 9299 owner = "nvim-telescope"; 9288 9300 repo = "telescope-frecency.nvim"; 9289 - rev = "54de6e45b958e37a2eca4dca22572b6c08866177"; 9290 - sha256 = "0kp6j2w1sfk28h7kxa9bhmqpav13r5qsmrdngcsdxpj5ffzpbyls"; 9301 + rev = "251fdb32d21321fec7bd3c39a3a8bc87b04145d4"; 9302 + sha256 = "1bpk0shd4q2rbj4dk1d729ixdhxlpll023smnwcxrpnfjydygvr3"; 9291 9303 }; 9292 9304 meta.homepage = "https://github.com/nvim-telescope/telescope-frecency.nvim/"; 9293 9305 }; ··· 9403 9415 9404 9416 telescope-sg = buildVimPluginFrom2Nix { 9405 9417 pname = "telescope-sg"; 9406 - version = "2023-08-04"; 9418 + version = "2023-08-09"; 9407 9419 src = fetchFromGitHub { 9408 9420 owner = "Marskey"; 9409 9421 repo = "telescope-sg"; 9410 - rev = "b599ae559d80cec643cf6d9478c745ea218c4642"; 9411 - sha256 = "0zgjhghl335b2nqhsiqkymrf9sml1pwhwv7hv3rkzqhyw66fxhlm"; 9422 + rev = "2e770cda77cb893035a5db5e67ea3ff45e6fc458"; 9423 + sha256 = "1pgc3va2j7wp49aq0kxnsqlybl0xa668y9xwqfznpxdpr09vlvln"; 9412 9424 }; 9413 9425 meta.homepage = "https://github.com/Marskey/telescope-sg/"; 9414 9426 }; ··· 9981 9993 9982 9994 unison = buildVimPluginFrom2Nix { 9983 9995 pname = "unison"; 9984 - version = "2023-08-07"; 9996 + version = "2023-08-09"; 9985 9997 src = fetchFromGitHub { 9986 9998 owner = "unisonweb"; 9987 9999 repo = "unison"; 9988 - rev = "5e428a7701005710ac05e9bf30d1547edd8f25e9"; 9989 - sha256 = "1sjx8bvl09i9fycxw5wad6gc95wg8l262npkxs1a1qfx46nrj551"; 10000 + rev = "388d0b9051fc8bf2d5f96285ac2800835b0d696a"; 10001 + sha256 = "1cai2vzi456djxbnq0yi1inn5n4jzwwr2qffcr21v4jl823i603k"; 9990 10002 }; 9991 10003 meta.homepage = "https://github.com/unisonweb/unison/"; 9992 10004 }; ··· 13524 13536 13525 13537 vim-prosession = buildVimPluginFrom2Nix { 13526 13538 pname = "vim-prosession"; 13527 - version = "2023-08-04"; 13539 + version = "2023-08-08"; 13528 13540 src = fetchFromGitHub { 13529 13541 owner = "dhruvasagar"; 13530 13542 repo = "vim-prosession"; 13531 - rev = "9069e5cefff48c2ed286f2576df6137e803992a5"; 13532 - sha256 = "0xaz03xx9m7r24p6bn3ddaxksnc1q8y1xg4lrs8mh2yvip3xb5mw"; 13543 + rev = "3099aaea29b072525b2b387ef0375079da3cc1ed"; 13544 + sha256 = "1yd0kgjgv8gjp5dnk3r2pgi4b4cbk1d8zy52ayh2lzspxfhihphy"; 13533 13545 }; 13534 13546 meta.homepage = "https://github.com/dhruvasagar/vim-prosession/"; 13535 13547 }; ··· 14353 14365 14354 14366 vim-test = buildVimPluginFrom2Nix { 14355 14367 pname = "vim-test"; 14356 - version = "2023-08-05"; 14368 + version = "2023-08-09"; 14357 14369 src = fetchFromGitHub { 14358 14370 owner = "vim-test"; 14359 14371 repo = "vim-test"; 14360 - rev = "9adeb20fb444430b3bfe4033ad487cf4377dddf4"; 14361 - sha256 = "0ip42nasckz2kw4krlgil4yg6pzh8saa259nxvjdxnq7xm2n5ynp"; 14372 + rev = "7cb4ae5212451266a1f643642d47474063a99de4"; 14373 + sha256 = "1xqlp1b54ssvfw7p212bmd10ccsjz77rm3vnvhs955f0blg80ji5"; 14362 14374 }; 14363 14375 meta.homepage = "https://github.com/vim-test/vim-test/"; 14364 14376 }; ··· 15085 15097 15086 15098 vimspector = buildVimPluginFrom2Nix { 15087 15099 pname = "vimspector"; 15088 - version = "2023-08-03"; 15100 + version = "2023-08-08"; 15089 15101 src = fetchFromGitHub { 15090 15102 owner = "puremourning"; 15091 15103 repo = "vimspector"; 15092 - rev = "61fb528c592082029d2f927c503b0040236c81a6"; 15093 - sha256 = "06f9ymz265ly6hl9pnnk7mm2q8k7x1lmr61hcjrgbca32xqijj83"; 15104 + rev = "cfbcabb31f0407a21fc4ee72c0ba9e050198fe2f"; 15105 + sha256 = "0b7sc7a6hycswdn7anyyrfrgpvlzci7w23s0fxlzsacyff3ijcj1"; 15094 15106 fetchSubmodules = true; 15095 15107 }; 15096 15108 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 15362 15374 15363 15375 wrapping-nvim = buildVimPluginFrom2Nix { 15364 15376 pname = "wrapping.nvim"; 15365 - version = "2023-05-28"; 15377 + version = "2023-08-08"; 15366 15378 src = fetchFromGitHub { 15367 15379 owner = "andrewferrier"; 15368 15380 repo = "wrapping.nvim"; 15369 - rev = "5e87f1424c86c50d3bc205830aa56ed1cad45467"; 15370 - sha256 = "0byca5y7jz9lkb3f5rj97ckazymaz1wlgc3gyjsdzngc9dfliqcx"; 15381 + rev = "1fc811d99b512ca53a4a773580f9ed5394fe6b2a"; 15382 + sha256 = "01j0whf2f4bzkq9p1bdpf7bhj1v7sj1bzdq47xck1f7fkkk2i8cr"; 15371 15383 }; 15372 15384 meta.homepage = "https://github.com/andrewferrier/wrapping.nvim/"; 15373 15385 }; ··· 15627 15639 15628 15640 nightfly = buildVimPluginFrom2Nix { 15629 15641 pname = "nightfly"; 15630 - version = "2023-08-06"; 15642 + version = "2023-08-09"; 15631 15643 src = fetchFromGitHub { 15632 15644 owner = "bluz71"; 15633 15645 repo = "vim-nightfly-colors"; 15634 - rev = "903da3ef1e41c6c763c9f98de6f2f9dc193ca5e7"; 15635 - sha256 = "09bw1ss09a3qfsyw40s1y7jsyd6r3i1gricxdxa5q4x9llsj9qsa"; 15646 + rev = "e5638253af9bc27b81a129690cd9a9a7fcf79f4d"; 15647 + sha256 = "1fq5qx87ybqqi7zlvy9sb2avkpswj20z44lg7cnlw0g5vc4wm7jv"; 15636 15648 }; 15637 15649 meta.homepage = "https://github.com/bluz71/vim-nightfly-colors/"; 15638 15650 }; ··· 15663 15675 15664 15676 nvchad-ui = buildVimPluginFrom2Nix { 15665 15677 pname = "nvchad-ui"; 15666 - version = "2023-07-29"; 15678 + version = "2023-08-09"; 15667 15679 src = fetchFromGitHub { 15668 15680 owner = "nvchad"; 15669 15681 repo = "ui"; 15670 - rev = "1d4267f47fc022c66af87261f49c32b9a05273cf"; 15671 - sha256 = "089a3ipja9x0giy29xa01w752rzlfhm6m4nbxd1g0kalh7fypjv3"; 15682 + rev = "a1d613347cb8fc3b00510f53f18a0cf5e876aaf1"; 15683 + sha256 = "0gy3bx02x1plpvbs6xpylg0i4d7gaqsickbcbnrwz2b93jz2rg94"; 15672 15684 }; 15673 15685 meta.homepage = "https://github.com/nvchad/ui/"; 15674 15686 };
+11 -11
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 854 854 }; 855 855 htmldjango = buildGrammar { 856 856 language = "htmldjango"; 857 - version = "0.0.0+rev=11e73eb"; 857 + version = "0.0.0+rev=717e83a"; 858 858 src = fetchFromGitHub { 859 859 owner = "interdependence"; 860 860 repo = "tree-sitter-htmldjango"; 861 - rev = "11e73ebd8e73356badaad826a0534437b208b6e7"; 861 + rev = "717e83aefd328735beeeb671f3f95b2624e70c57"; 862 862 hash = "sha256-xOWR5Lp9Ggkqmm5rutKrnMNXFASdyn6vPtxcY2mu2zs="; 863 863 }; 864 864 meta.homepage = "https://github.com/interdependence/tree-sitter-htmldjango"; ··· 1696 1696 }; 1697 1697 scala = buildGrammar { 1698 1698 language = "scala"; 1699 - version = "0.0.0+rev=a2f36c2"; 1699 + version = "0.0.0+rev=f14629b"; 1700 1700 src = fetchFromGitHub { 1701 1701 owner = "tree-sitter"; 1702 1702 repo = "tree-sitter-scala"; 1703 - rev = "a2f36c2477859110d5b7b675f395e50241fbc004"; 1704 - hash = "sha256-/GT4SwYit6IwWgEadPMEyXVtmXdwomWUrDMdlTHS6Qs="; 1703 + rev = "f14629b4d53f72356ce8f6d4ac8c54d21b4e74dd"; 1704 + hash = "sha256-SRj4iF1qS2jEFaIkRfXzAmzG7jKeSzKv5/GdXKbKRjU="; 1705 1705 }; 1706 1706 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 1707 1707 }; ··· 1796 1796 }; 1797 1797 sql = buildGrammar { 1798 1798 language = "sql"; 1799 - version = "0.0.0+rev=a000dd8"; 1799 + version = "0.0.0+rev=3dfa1b1"; 1800 1800 src = fetchFromGitHub { 1801 1801 owner = "derekstride"; 1802 1802 repo = "tree-sitter-sql"; 1803 - rev = "a000dd8930464c71fa6fec9be4fdd6198068393c"; 1804 - hash = "sha256-37nN/Zh84iTmmpZ804rnb/7oXzQqOk7ub1FbkCMlT28="; 1803 + rev = "3dfa1b1fafac51e3ffc39064eafb26b5111861a2"; 1804 + hash = "sha256-sDXYfILv+7/fGIaWp4SOfsjZ67Mi3UPnpt9NEapKZ+M="; 1805 1805 }; 1806 1806 meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; 1807 1807 }; ··· 2176 2176 }; 2177 2177 wing = buildGrammar { 2178 2178 language = "wing"; 2179 - version = "0.0.0+rev=df94899"; 2179 + version = "0.0.0+rev=6ae93e3"; 2180 2180 src = fetchFromGitHub { 2181 2181 owner = "winglang"; 2182 2182 repo = "wing"; 2183 - rev = "df94899fcee25e2da32744760aa4394d2e728a33"; 2184 - hash = "sha256-4mp3m029/3Kvke8NXbLQmE3qZa+c9I6x6nht1AckSgA="; 2183 + rev = "6ae93e3950b12b6c1b3881e4d347263574222c4e"; 2184 + hash = "sha256-Ik5RaizsMVF+ObB1HzmwzMdmYzwH1TJ342TXDrKqFFs="; 2185 2185 }; 2186 2186 location = "libs/tree-sitter-wing"; 2187 2187 generate = true;
+1 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 947 947 pname = "sg-nvim-rust"; 948 948 inherit (old) version src; 949 949 950 - cargoHash = "sha256-MJUEGzV756zWCHGAcdm9uU8DpoX6b1G8C2bRWy4QCfE="; 950 + cargoHash = "sha256-cDlqJBx9p/rA+OAHZW2GcOiQmroU66urZ+qv2lXhg/4="; 951 951 952 952 nativeBuildInputs = [ pkg-config ]; 953 953
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 692 692 https://github.com/tversteeg/registers.nvim/,, 693 693 https://github.com/vladdoster/remember.nvim/,, 694 694 https://github.com/filipdutescu/renamer.nvim/,, 695 + https://github.com/gabrielpoca/replacer.nvim/,HEAD, 695 696 https://github.com/NTBBloodbath/rest.nvim/,, 696 697 https://github.com/vim-scripts/restore_view.vim/,HEAD,restore-view-vim 697 698 https://github.com/gu-fan/riv.vim/,,
+2 -2
pkgs/applications/emulators/openmsx/default.nix
··· 20 20 21 21 stdenv.mkDerivation (finalAttrs: { 22 22 pname = "openmsx"; 23 - version = "18.0"; 23 + version = "19.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "openMSX"; 27 27 repo = "openMSX"; 28 28 rev = "RELEASE_${builtins.replaceStrings ["."] ["_"] finalAttrs.version}"; 29 - sha256 = "sha256-4V2B+OQbPVRmkRuqfeqyd+7pz9Z1YISjI79WqZS0Qhc="; 29 + sha256 = "sha256-NR0+vOUkbyuVWdHLmKEewDDmR1ibi3dtbSq+6RaxrGo="; 30 30 fetchSubmodules = true; 31 31 }; 32 32
+3 -3
pkgs/applications/misc/colorstorm/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , zigHook 4 + , zig_0_9 5 5 }: 6 6 7 7 stdenv.mkDerivation (finalAttrs: { ··· 16 16 }; 17 17 18 18 nativeBuildInputs = [ 19 - zigHook 19 + zig_0_9.hook 20 20 ]; 21 21 22 22 meta = { ··· 24 24 homepage = "https://github.com/benbusby/colorstorm"; 25 25 license = lib.licenses.mit; 26 26 maintainers = with lib.maintainers; [ ]; 27 - inherit (zigHook.meta) platforms; 27 + inherit (zig_0_9.meta) platforms; 28 28 }; 29 29 })
+2 -2
pkgs/applications/misc/mepo/default.nix
··· 17 17 , util-linux 18 18 , xwininfo 19 19 , zenity 20 - , zigHook 20 + , zig_0_10 21 21 }: 22 22 23 23 stdenv.mkDerivation (finalAttrs: { ··· 33 33 34 34 nativeBuildInputs = [ 35 35 pkg-config 36 - zigHook 36 + zig_0_10.hook 37 37 makeWrapper 38 38 ]; 39 39
+3 -3
pkgs/applications/misc/rivercarro/default.nix
··· 4 4 , pkg-config 5 5 , river 6 6 , wayland 7 - , zigHook 7 + , zig_0_9 8 8 }: 9 9 10 10 stdenv.mkDerivation (finalAttrs: { ··· 23 23 pkg-config 24 24 river 25 25 wayland 26 - zigHook 26 + zig_0_9.hook 27 27 ]; 28 28 29 29 meta = with lib; { ··· 42 42 changelog = "https://git.sr.ht/~novakane/rivercarro/refs/v${finalAttrs.version}"; 43 43 license = licenses.gpl3Plus; 44 44 maintainers = with maintainers; [ kraem ]; 45 - inherit (zigHook.meta) platforms; 45 + inherit (zig_0_9.meta) platforms; 46 46 }; 47 47 })
+3 -3
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "spicetify-cli"; 5 - version = "2.22.1"; 5 + version = "2.22.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "spicetify"; 9 9 repo = "spicetify-cli"; 10 10 rev = "v${version}"; 11 - hash = "sha256-EbTmxnUk2taAKWPNuoVcKybKgdvPegFjz/ImTIabZ7Q="; 11 + hash = "sha256-86ktRfBY7q83KGrc/JF1gIcIJxuScqIr27QPcl1U8vc="; 12 12 }; 13 13 14 - vendorHash = "sha256-Ypu3AKnjh2lDh43t1GZMJo7ZyEDyNbPWvoePLp+WQdI="; 14 + vendorHash = "sha256-+3PeugLSpybbjNSyFMWBGBX6QDaM41eH0ifPO39YfA0="; 15 15 16 16 ldflags = [ 17 17 "-s -w"
+2 -2
pkgs/applications/misc/waylock/default.nix
··· 7 7 , scdoc 8 8 , wayland 9 9 , wayland-protocols 10 - , zigHook 10 + , zig_0_10 11 11 }: 12 12 13 13 stdenv.mkDerivation (finalAttrs: { ··· 26 26 pkg-config 27 27 scdoc 28 28 wayland 29 - zigHook 29 + zig_0_10.hook 30 30 ]; 31 31 32 32 buildInputs = [
+3 -3
pkgs/applications/networking/cluster/kube-router/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube-router"; 5 - version = "1.5.4"; 5 + version = "1.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudnativelabs"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-/ruSSq+iHmJDFHH+mLoqtdljAGlc15lXjTqq+luJIU8="; 11 + hash = "sha256-3hfStQ87t8zKyRqUoUViAqRcI8AQXhYSwOGqwIm6Q/w="; 12 12 }; 13 13 14 - vendorHash = "sha256-U2TvH4TPBI6verEcyv0Z+ZFAKbADgzncJhW1IAJw4Ms="; 14 + vendorHash = "sha256-kV5tUGhOm0/q5btOQu4TtDO5dVmACNNvDS7iNgm/Xio="; 15 15 16 16 CGO_ENABLED = 0; 17 17
+3 -3
pkgs/applications/networking/cluster/roxctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "roxctl"; 5 - version = "4.1.0"; 5 + version = "4.1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "stackrox"; 9 9 repo = "stackrox"; 10 10 rev = version; 11 - sha256 = "sha256-9Y+NvKJ6+lzLaIIEgpY5zwiKd+mb9sbOcS5rsH2yB8g="; 11 + sha256 = "sha256-5wNf80kiYnKg/urIQQqe4HijqxQweiFx0UktFiOTeaU="; 12 12 }; 13 13 14 - vendorHash = "sha256-lZwj8Ne6/XYkmjYhytT75DyJWwweuX0x88VsGdKTMac="; 14 + vendorHash = "sha256-5glD904guK+TR9YFzeuIyHOXrJblcEVi9EReQz0fCCA="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+9 -9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 218 218 "vendorHash": "sha256-qIgr+ynaNSfNx1iW5RJrNHvEnlr46dBzIi+5IXYn+3Q=" 219 219 }, 220 220 "cloudflare": { 221 - "hash": "sha256-vC3uvv04an6KhXT1FECiB2LQMxJbiYhULNuiXoCRhnY=", 221 + "hash": "sha256-ayxekJkQt/7K/qwMKvjqkyVkux5+Jw3uyepmaiy3Ptc=", 222 222 "homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare", 223 223 "owner": "cloudflare", 224 224 "repo": "terraform-provider-cloudflare", 225 - "rev": "v4.11.0", 225 + "rev": "v4.12.0", 226 226 "spdx": "MPL-2.0", 227 - "vendorHash": "sha256-m+tQeOUbJ+bnVYl4FcBSTHKYuSGtznCqRQ/CR204WkE=" 227 + "vendorHash": "sha256-VTSbi2pDllzyKDhWs5EpWSXO5oKl+khVqLg/Ro3x8ys=" 228 228 }, 229 229 "cloudfoundry": { 230 230 "hash": "sha256-hoX2KNUzC7G+bFxReTN/6IG8/P4rczHAYn2QQ2iOioc=", ··· 372 372 "vendorHash": "sha256-7a90fzAU76QRXkSa+G/N3kMPP8jy68i72i2JSlUrvfc=" 373 373 }, 374 374 "exoscale": { 375 - "hash": "sha256-dLA9BWW4ghD1OSZaZtFfv8ipS+2lTeNRr1YD3E8ewpI=", 375 + "hash": "sha256-93pCsHrsYLJYgg8MXHz2Gg+vaPC9gcHdLastb89/BMg=", 376 376 "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", 377 377 "owner": "exoscale", 378 378 "repo": "terraform-provider-exoscale", 379 - "rev": "v0.50.0", 379 + "rev": "v0.51.0", 380 380 "spdx": "MPL-2.0", 381 381 "vendorHash": null 382 382 }, ··· 390 390 "vendorHash": "sha256-E1gzdES/YVxQq2J47E2zosvud2C/ViBeQ8+RfNHMBAg=" 391 391 }, 392 392 "fastly": { 393 - "hash": "sha256-90mVwC90lkvNRvyt5aKBE3h0XZTVXvWVVG6qIP+4pOk=", 393 + "hash": "sha256-Pd79xIFu+vwynwVqDFqkuhg8NczkbCF2eWOXrLOPCGI=", 394 394 "homepage": "https://registry.terraform.io/providers/fastly/fastly", 395 395 "owner": "fastly", 396 396 "repo": "terraform-provider-fastly", 397 - "rev": "v5.3.0", 397 + "rev": "v5.3.1", 398 398 "spdx": "MPL-2.0", 399 399 "vendorHash": null 400 400 }, ··· 827 827 "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" 828 828 }, 829 829 "oci": { 830 - "hash": "sha256-PLlgHUIQWxBCBmTRuQ6RSLuqkilqUb4svmklbSoYEtA=", 830 + "hash": "sha256-dB8yoUPv6uYKveZxCblwif2FKW0qNdY5CJMpbZivB78=", 831 831 "homepage": "https://registry.terraform.io/providers/oracle/oci", 832 832 "owner": "oracle", 833 833 "repo": "terraform-provider-oci", 834 - "rev": "v5.7.0", 834 + "rev": "v5.8.0", 835 835 "spdx": "MPL-2.0", 836 836 "vendorHash": null 837 837 },
+2 -2
pkgs/applications/networking/cluster/terragrunt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "terragrunt"; 8 - version = "0.48.4"; 8 + version = "0.48.6"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "gruntwork-io"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-3hHCNiuff8CgnQ6hB4I8jODINKA6ZpNOkKwVcCqKDo4="; 14 + hash = "sha256-pvDZfKITFrhtLnewAhRGjwu45zj2q3usNSr9U2xb52Y="; 15 15 }; 16 16 17 17 vendorHash = "sha256-5Umoqi2D6iUk2Ut7YB/nmkOyA6Rx2qFhy/ZbfqoX5qA=";
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "flexget"; 9 - version = "3.8.2"; 9 + version = "3.8.3"; 10 10 format = "pyproject"; 11 11 12 12 # Fetch from GitHub in order to use `requirements.in` ··· 14 14 owner = "Flexget"; 15 15 repo = "Flexget"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-IdjNk1GyJcNwHqm/ZYdHRh6a/XAD5p41Vu8JdPuCglE="; 17 + hash = "sha256-qGc5L9hL4KbcHGZvhvzqBg1ATFHWGKM72O/aDhrCV4Q="; 18 18 }; 19 19 20 20 postPatch = ''
+1 -1
pkgs/applications/networking/gns3/server.nix
··· 36 36 aiofiles 37 37 aiohttp 38 38 aiohttp-cors 39 - async_generator 39 + async-generator 40 40 distro 41 41 importlib-resources 42 42 jinja2
+742
pkgs/applications/radio/anytone-emu/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "CoreFoundation-sys" 7 + version = "0.1.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "d0e9889e6db118d49d88d84728d0e964d973a5680befb5f85f55141beea5c20b" 10 + dependencies = [ 11 + "libc", 12 + "mach", 13 + ] 14 + 15 + [[package]] 16 + name = "IOKit-sys" 17 + version = "0.1.5" 18 + source = "registry+https://github.com/rust-lang/crates.io-index" 19 + checksum = "99696c398cbaf669d2368076bdb3d627fb0ce51a26899d7c61228c5c0af3bf4a" 20 + dependencies = [ 21 + "CoreFoundation-sys", 22 + "libc", 23 + "mach", 24 + ] 25 + 26 + [[package]] 27 + name = "aho-corasick" 28 + version = "1.0.2" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 31 + dependencies = [ 32 + "memchr", 33 + ] 34 + 35 + [[package]] 36 + name = "android-tzdata" 37 + version = "0.1.1" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 40 + 41 + [[package]] 42 + name = "android_system_properties" 43 + version = "0.1.5" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 46 + dependencies = [ 47 + "libc", 48 + ] 49 + 50 + [[package]] 51 + name = "anstream" 52 + version = "0.3.2" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 55 + dependencies = [ 56 + "anstyle", 57 + "anstyle-parse", 58 + "anstyle-query", 59 + "anstyle-wincon", 60 + "colorchoice", 61 + "is-terminal", 62 + "utf8parse", 63 + ] 64 + 65 + [[package]] 66 + name = "anstyle" 67 + version = "1.0.0" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 70 + 71 + [[package]] 72 + name = "anstyle-parse" 73 + version = "0.2.0" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 76 + dependencies = [ 77 + "utf8parse", 78 + ] 79 + 80 + [[package]] 81 + name = "anstyle-query" 82 + version = "1.0.0" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 85 + dependencies = [ 86 + "windows-sys", 87 + ] 88 + 89 + [[package]] 90 + name = "anstyle-wincon" 91 + version = "1.0.1" 92 + source = "registry+https://github.com/rust-lang/crates.io-index" 93 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 94 + dependencies = [ 95 + "anstyle", 96 + "windows-sys", 97 + ] 98 + 99 + [[package]] 100 + name = "anytone-emu" 101 + version = "0.1.0" 102 + dependencies = [ 103 + "clap", 104 + "home", 105 + "log", 106 + "nix", 107 + "serialport", 108 + "stderrlog", 109 + ] 110 + 111 + [[package]] 112 + name = "atty" 113 + version = "0.2.14" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 116 + dependencies = [ 117 + "hermit-abi 0.1.19", 118 + "libc", 119 + "winapi", 120 + ] 121 + 122 + [[package]] 123 + name = "autocfg" 124 + version = "1.1.0" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 127 + 128 + [[package]] 129 + name = "bitflags" 130 + version = "1.3.2" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 133 + 134 + [[package]] 135 + name = "bitflags" 136 + version = "2.0.2" 137 + source = "registry+https://github.com/rust-lang/crates.io-index" 138 + checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" 139 + 140 + [[package]] 141 + name = "bumpalo" 142 + version = "3.13.0" 143 + source = "registry+https://github.com/rust-lang/crates.io-index" 144 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 145 + 146 + [[package]] 147 + name = "cc" 148 + version = "1.0.79" 149 + source = "registry+https://github.com/rust-lang/crates.io-index" 150 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 151 + 152 + [[package]] 153 + name = "cfg-if" 154 + version = "1.0.0" 155 + source = "registry+https://github.com/rust-lang/crates.io-index" 156 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 157 + 158 + [[package]] 159 + name = "chrono" 160 + version = "0.4.26" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 163 + dependencies = [ 164 + "android-tzdata", 165 + "iana-time-zone", 166 + "js-sys", 167 + "num-traits", 168 + "wasm-bindgen", 169 + "winapi", 170 + ] 171 + 172 + [[package]] 173 + name = "clap" 174 + version = "4.3.4" 175 + source = "registry+https://github.com/rust-lang/crates.io-index" 176 + checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed" 177 + dependencies = [ 178 + "clap_builder", 179 + "clap_derive", 180 + "once_cell", 181 + ] 182 + 183 + [[package]] 184 + name = "clap_builder" 185 + version = "4.3.4" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636" 188 + dependencies = [ 189 + "anstream", 190 + "anstyle", 191 + "bitflags 1.3.2", 192 + "clap_lex", 193 + "strsim", 194 + ] 195 + 196 + [[package]] 197 + name = "clap_derive" 198 + version = "4.3.2" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 201 + dependencies = [ 202 + "heck", 203 + "proc-macro2", 204 + "quote", 205 + "syn", 206 + ] 207 + 208 + [[package]] 209 + name = "clap_lex" 210 + version = "0.5.0" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 213 + 214 + [[package]] 215 + name = "colorchoice" 216 + version = "1.0.0" 217 + source = "registry+https://github.com/rust-lang/crates.io-index" 218 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 219 + 220 + [[package]] 221 + name = "core-foundation-sys" 222 + version = "0.8.4" 223 + source = "registry+https://github.com/rust-lang/crates.io-index" 224 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 225 + 226 + [[package]] 227 + name = "errno" 228 + version = "0.3.1" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 231 + dependencies = [ 232 + "errno-dragonfly", 233 + "libc", 234 + "windows-sys", 235 + ] 236 + 237 + [[package]] 238 + name = "errno-dragonfly" 239 + version = "0.1.2" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 242 + dependencies = [ 243 + "cc", 244 + "libc", 245 + ] 246 + 247 + [[package]] 248 + name = "heck" 249 + version = "0.4.1" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 252 + 253 + [[package]] 254 + name = "hermit-abi" 255 + version = "0.1.19" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 258 + dependencies = [ 259 + "libc", 260 + ] 261 + 262 + [[package]] 263 + name = "hermit-abi" 264 + version = "0.3.1" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 267 + 268 + [[package]] 269 + name = "home" 270 + version = "0.5.5" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 273 + dependencies = [ 274 + "windows-sys", 275 + ] 276 + 277 + [[package]] 278 + name = "iana-time-zone" 279 + version = "0.1.57" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 282 + dependencies = [ 283 + "android_system_properties", 284 + "core-foundation-sys", 285 + "iana-time-zone-haiku", 286 + "js-sys", 287 + "wasm-bindgen", 288 + "windows", 289 + ] 290 + 291 + [[package]] 292 + name = "iana-time-zone-haiku" 293 + version = "0.1.2" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 296 + dependencies = [ 297 + "cc", 298 + ] 299 + 300 + [[package]] 301 + name = "io-lifetimes" 302 + version = "1.0.11" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 305 + dependencies = [ 306 + "hermit-abi 0.3.1", 307 + "libc", 308 + "windows-sys", 309 + ] 310 + 311 + [[package]] 312 + name = "is-terminal" 313 + version = "0.4.7" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 316 + dependencies = [ 317 + "hermit-abi 0.3.1", 318 + "io-lifetimes", 319 + "rustix", 320 + "windows-sys", 321 + ] 322 + 323 + [[package]] 324 + name = "js-sys" 325 + version = "0.3.64" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 328 + dependencies = [ 329 + "wasm-bindgen", 330 + ] 331 + 332 + [[package]] 333 + name = "libc" 334 + version = "0.2.146" 335 + source = "registry+https://github.com/rust-lang/crates.io-index" 336 + checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 337 + 338 + [[package]] 339 + name = "libudev" 340 + version = "0.3.0" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "78b324152da65df7bb95acfcaab55e3097ceaab02fb19b228a9eb74d55f135e0" 343 + dependencies = [ 344 + "libc", 345 + "libudev-sys", 346 + ] 347 + 348 + [[package]] 349 + name = "libudev-sys" 350 + version = "0.1.4" 351 + source = "registry+https://github.com/rust-lang/crates.io-index" 352 + checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324" 353 + dependencies = [ 354 + "libc", 355 + "pkg-config", 356 + ] 357 + 358 + [[package]] 359 + name = "linux-raw-sys" 360 + version = "0.3.8" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 363 + 364 + [[package]] 365 + name = "log" 366 + version = "0.4.19" 367 + source = "registry+https://github.com/rust-lang/crates.io-index" 368 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 369 + 370 + [[package]] 371 + name = "mach" 372 + version = "0.1.2" 373 + source = "registry+https://github.com/rust-lang/crates.io-index" 374 + checksum = "2fd13ee2dd61cc82833ba05ade5a30bb3d63f7ced605ef827063c63078302de9" 375 + dependencies = [ 376 + "libc", 377 + ] 378 + 379 + [[package]] 380 + name = "mach2" 381 + version = "0.4.1" 382 + source = "registry+https://github.com/rust-lang/crates.io-index" 383 + checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 384 + dependencies = [ 385 + "libc", 386 + ] 387 + 388 + [[package]] 389 + name = "memchr" 390 + version = "2.5.0" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 393 + 394 + [[package]] 395 + name = "memoffset" 396 + version = "0.7.1" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 399 + dependencies = [ 400 + "autocfg", 401 + ] 402 + 403 + [[package]] 404 + name = "nix" 405 + version = "0.26.2" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 408 + dependencies = [ 409 + "bitflags 1.3.2", 410 + "cfg-if", 411 + "libc", 412 + "memoffset", 413 + "pin-utils", 414 + "static_assertions", 415 + ] 416 + 417 + [[package]] 418 + name = "num-traits" 419 + version = "0.2.15" 420 + source = "registry+https://github.com/rust-lang/crates.io-index" 421 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 422 + dependencies = [ 423 + "autocfg", 424 + ] 425 + 426 + [[package]] 427 + name = "once_cell" 428 + version = "1.18.0" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 431 + 432 + [[package]] 433 + name = "pin-utils" 434 + version = "0.1.0" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 437 + 438 + [[package]] 439 + name = "pkg-config" 440 + version = "0.3.27" 441 + source = "registry+https://github.com/rust-lang/crates.io-index" 442 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 443 + 444 + [[package]] 445 + name = "proc-macro2" 446 + version = "1.0.60" 447 + source = "registry+https://github.com/rust-lang/crates.io-index" 448 + checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" 449 + dependencies = [ 450 + "unicode-ident", 451 + ] 452 + 453 + [[package]] 454 + name = "quote" 455 + version = "1.0.28" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 458 + dependencies = [ 459 + "proc-macro2", 460 + ] 461 + 462 + [[package]] 463 + name = "regex" 464 + version = "1.8.4" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" 467 + dependencies = [ 468 + "aho-corasick", 469 + "memchr", 470 + "regex-syntax", 471 + ] 472 + 473 + [[package]] 474 + name = "regex-syntax" 475 + version = "0.7.2" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 478 + 479 + [[package]] 480 + name = "rustix" 481 + version = "0.37.20" 482 + source = "registry+https://github.com/rust-lang/crates.io-index" 483 + checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 484 + dependencies = [ 485 + "bitflags 1.3.2", 486 + "errno", 487 + "io-lifetimes", 488 + "libc", 489 + "linux-raw-sys", 490 + "windows-sys", 491 + ] 492 + 493 + [[package]] 494 + name = "scopeguard" 495 + version = "1.1.0" 496 + source = "registry+https://github.com/rust-lang/crates.io-index" 497 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 498 + 499 + [[package]] 500 + name = "serialport" 501 + version = "4.2.1" 502 + source = "registry+https://github.com/rust-lang/crates.io-index" 503 + checksum = "353dc2cbfc67c9a14a89a1292a9d8e819bd51066b083e08c1974ba08e3f48c62" 504 + dependencies = [ 505 + "CoreFoundation-sys", 506 + "IOKit-sys", 507 + "bitflags 2.0.2", 508 + "cfg-if", 509 + "libudev", 510 + "mach2", 511 + "nix", 512 + "regex", 513 + "scopeguard", 514 + "winapi", 515 + ] 516 + 517 + [[package]] 518 + name = "static_assertions" 519 + version = "1.1.0" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 522 + 523 + [[package]] 524 + name = "stderrlog" 525 + version = "0.5.4" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "69a26bbf6de627d389164afa9783739b56746c6c72c4ed16539f4ff54170327b" 528 + dependencies = [ 529 + "atty", 530 + "chrono", 531 + "log", 532 + "termcolor", 533 + "thread_local", 534 + ] 535 + 536 + [[package]] 537 + name = "strsim" 538 + version = "0.10.0" 539 + source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 541 + 542 + [[package]] 543 + name = "syn" 544 + version = "2.0.18" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 547 + dependencies = [ 548 + "proc-macro2", 549 + "quote", 550 + "unicode-ident", 551 + ] 552 + 553 + [[package]] 554 + name = "termcolor" 555 + version = "1.1.3" 556 + source = "registry+https://github.com/rust-lang/crates.io-index" 557 + checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 558 + dependencies = [ 559 + "winapi-util", 560 + ] 561 + 562 + [[package]] 563 + name = "thread_local" 564 + version = "1.1.7" 565 + source = "registry+https://github.com/rust-lang/crates.io-index" 566 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 567 + dependencies = [ 568 + "cfg-if", 569 + "once_cell", 570 + ] 571 + 572 + [[package]] 573 + name = "unicode-ident" 574 + version = "1.0.9" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 577 + 578 + [[package]] 579 + name = "utf8parse" 580 + version = "0.2.1" 581 + source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 583 + 584 + [[package]] 585 + name = "wasm-bindgen" 586 + version = "0.2.87" 587 + source = "registry+https://github.com/rust-lang/crates.io-index" 588 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 589 + dependencies = [ 590 + "cfg-if", 591 + "wasm-bindgen-macro", 592 + ] 593 + 594 + [[package]] 595 + name = "wasm-bindgen-backend" 596 + version = "0.2.87" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 599 + dependencies = [ 600 + "bumpalo", 601 + "log", 602 + "once_cell", 603 + "proc-macro2", 604 + "quote", 605 + "syn", 606 + "wasm-bindgen-shared", 607 + ] 608 + 609 + [[package]] 610 + name = "wasm-bindgen-macro" 611 + version = "0.2.87" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 614 + dependencies = [ 615 + "quote", 616 + "wasm-bindgen-macro-support", 617 + ] 618 + 619 + [[package]] 620 + name = "wasm-bindgen-macro-support" 621 + version = "0.2.87" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 624 + dependencies = [ 625 + "proc-macro2", 626 + "quote", 627 + "syn", 628 + "wasm-bindgen-backend", 629 + "wasm-bindgen-shared", 630 + ] 631 + 632 + [[package]] 633 + name = "wasm-bindgen-shared" 634 + version = "0.2.87" 635 + source = "registry+https://github.com/rust-lang/crates.io-index" 636 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 637 + 638 + [[package]] 639 + name = "winapi" 640 + version = "0.3.9" 641 + source = "registry+https://github.com/rust-lang/crates.io-index" 642 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 643 + dependencies = [ 644 + "winapi-i686-pc-windows-gnu", 645 + "winapi-x86_64-pc-windows-gnu", 646 + ] 647 + 648 + [[package]] 649 + name = "winapi-i686-pc-windows-gnu" 650 + version = "0.4.0" 651 + source = "registry+https://github.com/rust-lang/crates.io-index" 652 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 653 + 654 + [[package]] 655 + name = "winapi-util" 656 + version = "0.1.5" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 659 + dependencies = [ 660 + "winapi", 661 + ] 662 + 663 + [[package]] 664 + name = "winapi-x86_64-pc-windows-gnu" 665 + version = "0.4.0" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 668 + 669 + [[package]] 670 + name = "windows" 671 + version = "0.48.0" 672 + source = "registry+https://github.com/rust-lang/crates.io-index" 673 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 674 + dependencies = [ 675 + "windows-targets", 676 + ] 677 + 678 + [[package]] 679 + name = "windows-sys" 680 + version = "0.48.0" 681 + source = "registry+https://github.com/rust-lang/crates.io-index" 682 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 683 + dependencies = [ 684 + "windows-targets", 685 + ] 686 + 687 + [[package]] 688 + name = "windows-targets" 689 + version = "0.48.0" 690 + source = "registry+https://github.com/rust-lang/crates.io-index" 691 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 692 + dependencies = [ 693 + "windows_aarch64_gnullvm", 694 + "windows_aarch64_msvc", 695 + "windows_i686_gnu", 696 + "windows_i686_msvc", 697 + "windows_x86_64_gnu", 698 + "windows_x86_64_gnullvm", 699 + "windows_x86_64_msvc", 700 + ] 701 + 702 + [[package]] 703 + name = "windows_aarch64_gnullvm" 704 + version = "0.48.0" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 707 + 708 + [[package]] 709 + name = "windows_aarch64_msvc" 710 + version = "0.48.0" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 713 + 714 + [[package]] 715 + name = "windows_i686_gnu" 716 + version = "0.48.0" 717 + source = "registry+https://github.com/rust-lang/crates.io-index" 718 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 719 + 720 + [[package]] 721 + name = "windows_i686_msvc" 722 + version = "0.48.0" 723 + source = "registry+https://github.com/rust-lang/crates.io-index" 724 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 725 + 726 + [[package]] 727 + name = "windows_x86_64_gnu" 728 + version = "0.48.0" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 731 + 732 + [[package]] 733 + name = "windows_x86_64_gnullvm" 734 + version = "0.48.0" 735 + source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 737 + 738 + [[package]] 739 + name = "windows_x86_64_msvc" 740 + version = "0.48.0" 741 + source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
+42
pkgs/applications/radio/anytone-emu/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , udev 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "anytone-emu"; 10 + version = "unstable-2023-06-15"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "hmatuschek"; 14 + repo = "anytone-emu"; 15 + rev = "c6a63b1c9638b48ed0969f90a5e11e2a5fe59458"; 16 + hash = "sha256-Y+7DkenYiwnfVWtMwmtX64sUN7bBVoReEmZQfEjHn8o="; 17 + }; 18 + 19 + cargoLock = { 20 + lockFile = ./Cargo.lock; 21 + }; 22 + 23 + postPatch = '' 24 + ln -s ${./Cargo.lock} Cargo.lock 25 + ''; 26 + 27 + nativeBuildInputs = [ 28 + pkg-config 29 + ]; 30 + 31 + buildInputs = [ 32 + udev 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "A tiny emulator for AnyTone radios"; 37 + homepage = "https://github.com/hmatuschek/anytone-emu"; 38 + license = licenses.gpl3Only; 39 + maintainers = with maintainers; [ janik ]; 40 + platforms = platforms.linux; 41 + }; 42 + }
+2 -2
pkgs/applications/science/biology/seqkit/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "seqkit"; 8 - version = "2.5.0"; 8 + version = "2.5.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "shenwei356"; 12 12 repo = "seqkit"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-pk4HNtG2x3zZ+GEH5MNn/XPNSmx8zGWbVYPGCYIZucs="; 14 + sha256 = "sha256-aS8aTh8Lszob9It89shhKyqxCDjFs7zxE3VhMCHYaGM="; 15 15 }; 16 16 17 17 vendorHash = "sha256-54kb9Na76+CgW61SnXu7EfO0InH/rjliNRcH2M/gxII=";
+3 -3
pkgs/applications/science/logic/egglog/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage { 7 7 pname = "egglog"; 8 - version = "unstable-2023-07-19"; 8 + version = "unstable-2023-08-09"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "egraphs-good"; 12 12 repo = "egglog"; 13 - rev = "9fe03ad35a2a975a2c9140a641ba91266b7a72ce"; 14 - hash = "sha256-9JeJJdZW8ecogReJzQrp3hFkK/pp/+pLxJMNREWuiyI="; 13 + rev = "de31786679e3fa879e37c324e7eb54d76466f61f"; 14 + hash = "sha256-mskFjDTkmHwaGWMpwW2DTD64vLvWGZJYgy9smEbhFwI="; 15 15 }; 16 16 17 17 cargoLock = {
+2 -2
pkgs/applications/video/vdr/softhddevice/default.nix
··· 12 12 }: 13 13 stdenv.mkDerivation rec { 14 14 pname = "vdr-softhddevice"; 15 - version = "1.11.1"; 15 + version = "1.11.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "ua0lnj"; 19 19 repo = "vdr-plugin-softhddevice"; 20 - sha256 = "sha256-+itSxkyst/KJzyT8ALJkCKumrHHKiWfnvikonwexgnc="; 20 + sha256 = "sha256-V/jkwj/FWgebT4w/n9R5p5xiRNacTolnS3/SYy7FJwA="; 21 21 rev = "v${version}"; 22 22 }; 23 23
+2 -2
pkgs/applications/window-managers/river/default.nix
··· 14 14 , wayland-protocols 15 15 , wlroots_0_16 16 16 , xwayland 17 - , zigHook 17 + , zig_0_10 18 18 , withManpages ? true 19 19 , xwaylandSupport ? true 20 20 }: ··· 37 37 pkg-config 38 38 wayland 39 39 xwayland 40 - zigHook 40 + zig_0_10.hook 41 41 ] 42 42 ++ lib.optional withManpages scdoc; 43 43
+3 -3
pkgs/development/compilers/erg/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "erg"; 12 - version = "0.6.17"; 12 + version = "0.6.18"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "erg-lang"; 16 16 repo = "erg"; 17 17 rev = "v${version}"; 18 - hash = "sha256-KHfKV0i3jYwzD/PQ0TSOlxjUnc08pk0yKrLQlg5eQvg="; 18 + hash = "sha256-bpKzC7xHP4vfl2WcyMEsFK1aAbkP3dtlpyNvXUWHWKg="; 19 19 }; 20 20 21 - cargoHash = "sha256-PD1C3IsupjyQndD971zbfHYxizOQd/t770u48o/aGmk="; 21 + cargoHash = "sha256-wIp+zQpHLmZNwgbSXQKV45YwO5qpZqdcUE6gnF/Wzhk="; 22 22 23 23 nativeBuildInputs = [ 24 24 makeWrapper
+1
pkgs/development/compilers/zig/0.10.nix
··· 6 6 , libxml2 7 7 , zlib 8 8 , coreutils 9 + , callPackage 9 10 }@args: 10 11 11 12 import ./generic.nix args {
+1
pkgs/development/compilers/zig/0.11.nix
··· 6 6 , libxml2 7 7 , zlib 8 8 , coreutils 9 + , callPackage 9 10 }@args: 10 11 11 12 import ./generic.nix args {
+1
pkgs/development/compilers/zig/0.9.1.nix
··· 6 6 , libxml2 7 7 , zlib 8 8 , coreutils 9 + , callPackage 9 10 }@args: 10 11 11 12 import ./generic.nix args {
+7
pkgs/development/compilers/zig/generic.nix
··· 6 6 , libxml2 7 7 , zlib 8 8 , coreutils 9 + , callPackage 9 10 , ... 10 11 }: 11 12 ··· 52 53 53 54 runHook postInstallCheck 54 55 ''; 56 + 57 + passthru = { 58 + hook = callPackage ./hook.nix { 59 + zig = finalAttrs.finalPackage; 60 + }; 61 + }; 55 62 56 63 meta = { 57 64 description = "General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software";
+2 -2
pkgs/development/interpreters/wazero/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "wazero"; 10 - version = "1.3.1"; 10 + version = "1.4.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "tetratelabs"; 14 14 repo = "wazero"; 15 15 rev = "v${version}"; 16 - hash = "sha256-gLiUEJdO/2btZb5D9O1r+uF3ZVBN4Oy3dFwqUNQRoW8="; 16 + hash = "sha256-Yn5mg/K+RT6CoW1vMrpvRFOao83IAZE1mP+DGp4SmKk="; 17 17 }; 18 18 19 19 vendorHash = null;
+2 -2
pkgs/development/python-modules/aiohttp/default.nix
··· 21 21 , typing-extensions 22 22 , idna-ssl 23 23 # tests_require 24 - , async_generator 24 + , async-generator 25 25 , freezegun 26 26 , gunicorn 27 27 , pytest-mock ··· 80 80 81 81 # NOTE: pytest-xdist cannot be added because it is flaky. See https://github.com/NixOS/nixpkgs/issues/230597 for more info. 82 82 nativeCheckInputs = [ 83 - async_generator 83 + async-generator 84 84 freezegun 85 85 gunicorn 86 86 pytest-mock
+2 -2
pkgs/development/python-modules/asks/default.nix
··· 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 5 , anyio 6 - , async_generator 6 + , async-generator 7 7 , h11 8 8 , curio 9 9 , overly ··· 28 28 29 29 propagatedBuildInputs = [ 30 30 anyio 31 - async_generator 31 + async-generator 32 32 h11 33 33 ]; 34 34
+1 -1
pkgs/development/python-modules/async_generator/default.nix pkgs/development/python-modules/async-generator/default.nix
··· 14 14 src = fetchPypi { 15 15 pname = "async_generator"; 16 16 inherit version; 17 - sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144"; 17 + hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ="; 18 18 }; 19 19 20 20 nativeCheckInputs = [
+8 -6
pkgs/development/python-modules/bitsandbytes/default.nix
··· 5 5 , pythonOlder 6 6 , pytestCheckHook 7 7 , setuptools 8 + , wheel 8 9 , torch 9 10 , einops 10 11 , lion-pytorch ··· 14 15 15 16 let 16 17 pname = "bitsandbytes"; 17 - version = "0.38.0"; 18 + version = "0.41.0"; 18 19 19 20 inherit (torch) cudaCapabilities cudaPackages cudaSupport; 20 21 inherit (cudaPackages) backendStdenv cudaVersion; ··· 53 54 owner = "TimDettmers"; 54 55 repo = pname; 55 56 rev = "refs/tags/${version}"; 56 - hash = "sha256-gGlbzTDvZNo4MhcYzLvWuB2ec7q+Qt5/LtTbJ0Rc+Kk="; 57 + hash = "sha256-e6SK2ylITookO6bhpfdRp/V4y2S9rk6Lo1PD3xXrcmM="; 57 58 }; 58 59 59 60 postPatch = '' 60 61 substituteInPlace Makefile --replace "/usr/bin/g++" "g++" --replace "lib64" "lib" 61 62 substituteInPlace bitsandbytes/cuda_setup/main.py \ 62 - --replace "binary_path = package_dir / binary_name" \ 63 - "binary_path = Path('$out/${python.sitePackages}/${pname}')/binary_name" 63 + --replace "binary_path = package_dir / self.binary_name" \ 64 + "binary_path = Path('$out/${python.sitePackages}/${pname}')/self.binary_name" 64 65 '' + lib.optionalString torch.cudaSupport '' 65 66 substituteInPlace bitsandbytes/cuda_setup/main.py \ 66 67 --replace "/usr/local/cuda/lib64" "${cuda-native-redist}/lib" ··· 75 76 else 76 77 ''make CUDA_VERSION=CPU cpuonly''; 77 78 78 - nativeBuildInputs = [ setuptools ] ++ lib.optionals torch.cudaSupport [ cuda-native-redist ]; 79 + nativeBuildInputs = [ setuptools wheel ] ++ lib.optionals torch.cudaSupport [ cuda-native-redist ]; 79 80 buildInputs = lib.optionals torch.cudaSupport [ cuda-redist ]; 80 81 81 82 propagatedBuildInputs = [ 83 + scipy 82 84 torch 83 85 ]; 84 86 85 87 doCheck = false; # tests require CUDA and also GPU access 86 - nativeCheckInputs = [ pytestCheckHook einops lion-pytorch scipy ]; 88 + nativeCheckInputs = [ pytestCheckHook einops lion-pytorch ]; 87 89 88 90 pythonImportsCheck = [ 89 91 "bitsandbytes"
+2
pkgs/development/python-modules/cirq-core/default.nix
··· 104 104 "test_benchmark_2q_xeb_fidelities" 105 105 # https://github.com/quantumlib/Cirq/pull/5991 106 106 "test_json_and_repr_data" 107 + # Tests for some changed error handling behavior in SymPy 1.12 108 + "test_custom_value_not_implemented" 107 109 ]; 108 110 109 111 meta = with lib; {
+2 -2
pkgs/development/python-modules/geopy/default.nix
··· 1 1 { lib 2 - , async_generator 2 + , async-generator 3 3 , buildPythonPackage 4 4 , docutils 5 5 , fetchFromGitHub ··· 27 27 ]; 28 28 29 29 nativeCheckInputs = [ 30 - async_generator 30 + async-generator 31 31 docutils 32 32 pytestCheckHook 33 33 pytz
+2 -2
pkgs/development/python-modules/google-api-core/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "google-api-core"; 20 - version = "2.11.0"; 20 + version = "2.11.1"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-S5u11aOAoL76BXOzAmUbipqJJiwXMON79CPOxRGATCI="; 27 + hash = "sha256-JdKeBaAFjtXxnGHAp4sbU63qTZNktGTQFPvalB9tHJo="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+44
pkgs/development/python-modules/gpib-ctypes/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , pytestCheckHook 6 + , linux-gpib 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "gpib-ctypes"; 11 + version = "0.3.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchPypi { 17 + pname = "gpib_ctypes"; 18 + inherit version; 19 + hash = "sha256-c9l6TNmM4PtbvopnnFi5R1dQ9o3MI39BHHHPSGqfjCY="; 20 + }; 21 + 22 + nativeCheckInputs = [ 23 + pytestCheckHook 24 + ]; 25 + 26 + postPatch = '' 27 + substituteInPlace gpib_ctypes/gpib/gpib.py \ 28 + --replace "libgpib.so.0" "${linux-gpib}/lib/libgpib.so.0" 29 + substituteInPlace setup.py \ 30 + --replace "'pytest-runner'," "" 31 + ''; 32 + 33 + pythonImportsCheck = [ 34 + "gpib_ctypes.gpib" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Cross-platform Python bindings for the NI GPIB and linux-gpib C interfaces"; 39 + homepage = "https://github.com/tivek/gpib_ctypes/"; 40 + changelog = "https://github.com/tivek/gpib_ctypes/blob/${version}/HISTORY.rst"; 41 + license = licenses.gpl2Only; 42 + maintainers = with maintainers; [ fsagbuya ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/graphtage/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "graphtage"; 17 - version = "0.2.9"; 17 + version = "0.3.0"; 18 18 19 19 disabled = pythonOlder "3.6"; 20 20 ··· 22 22 owner = "trailofbits"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-GK83qSXFSCK/tiIfNfsaDfViDVzdhQNT90kB9wiTLbk="; 25 + hash = "sha256-rzX5pSSPm3CjpnCm0gxsgUaeXho9dP7WTanCzBK6Yps="; 26 26 }; 27 27 28 28 postPatch = ''
+2 -2
pkgs/development/python-modules/jupyterhub/default.nix
··· 5 5 , fetchPypi 6 6 , fetchzip 7 7 , alembic 8 - , async_generator 8 + , async-generator 9 9 , certipy 10 10 , python-dateutil 11 11 , entrypoints ··· 113 113 propagatedBuildInputs = [ 114 114 # https://github.com/jupyterhub/jupyterhub/blob/master/requirements.txt 115 115 alembic 116 - async_generator 116 + async-generator 117 117 certipy 118 118 python-dateutil 119 119 entrypoints
+5 -5
pkgs/development/python-modules/llfuse/default.nix
··· 3 3 , buildPythonPackage 4 4 , pythonOlder 5 5 , fetchFromGitHub 6 - , cython 6 + , cython_3 7 7 , fuse 8 8 , pkg-config 9 9 , pytestCheckHook ··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "llfuse"; 17 - version = "1.4.4"; 17 + version = "1.5.0"; 18 18 19 19 format = "pyproject"; 20 20 21 - disabled = pythonOlder "3.5"; 21 + disabled = pythonOlder "3.8"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "python-llfuse"; 25 25 repo = "python-llfuse"; 26 26 rev = "refs/tags/release-${version}"; 27 - hash = "sha256-qsnmhnZsK0j9dPhXT9mymQTzVHmmGnB5vgONatxDLIo="; 27 + hash = "sha256-6/iW5eHmX6ODVPLFkOo3bN9yW8ixqy2MHwQ2r9FA0iI="; 28 28 }; 29 29 30 - nativeBuildInputs = [ cython pkg-config setuptools ]; 30 + nativeBuildInputs = [ cython_3 pkg-config setuptools ]; 31 31 32 32 buildInputs = [ fuse ]; 33 33
+2 -2
pkgs/development/python-modules/mkdocstrings-python/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "mkdocstrings-python"; 14 - version = "1.2.1"; 14 + version = "1.3.0"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "mkdocstrings"; 21 21 repo = "python"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-65c63K8u3aWJFeMIi0jOeRA7RXc1OWumys0LUOvgBEU="; 23 + hash = "sha256-grcxAVyKfF3CtpjE+uuQe2jvz+xmKU/oHqgyqK7Erhc="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/nbclient/default.nix
··· 1 - { async_generator 1 + { async-generator 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , hatchling ··· 36 36 ]; 37 37 38 38 propagatedBuildInputs = [ 39 - async_generator 39 + async-generator 40 40 traitlets 41 41 nbformat 42 42 nest-asyncio
+370 -377
pkgs/development/python-modules/polars/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.20.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 6 15 name = "adler" 7 16 version = "1.0.2" 8 17 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 28 37 29 38 [[package]] 30 39 name = "aho-corasick" 31 - version = "1.0.1" 40 + version = "1.0.2" 32 41 source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 42 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 34 43 dependencies = [ 35 44 "memchr", 36 45 ] ··· 51 60 ] 52 61 53 62 [[package]] 63 + name = "allocator-api2" 64 + version = "0.2.16" 65 + source = "registry+https://github.com/rust-lang/crates.io-index" 66 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 67 + 68 + [[package]] 69 + name = "android-tzdata" 70 + version = "0.1.1" 71 + source = "registry+https://github.com/rust-lang/crates.io-index" 72 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 73 + 74 + [[package]] 54 75 name = "android_system_properties" 55 76 version = "0.1.5" 56 77 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 86 107 87 108 [[package]] 88 109 name = "arrow2" 89 - version = "0.17.2" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "15ae0428d69ab31d7b2adad22a752d6f11fef2e901d2262d0cad4f5cb08b7093" 110 + version = "0.17.3" 111 + source = "git+https://github.com/jorgecarleitao/arrow2?rev=2ecd3e823f63884ca77b146a8cd8fcdea9f328fd#2ecd3e823f63884ca77b146a8cd8fcdea9f328fd" 92 112 dependencies = [ 93 113 "ahash", 94 114 "arrow-format", ··· 138 158 dependencies = [ 139 159 "proc-macro2", 140 160 "quote", 141 - "syn 2.0.16", 161 + "syn 2.0.27", 142 162 ] 143 163 144 164 [[package]] 145 165 name = "async-trait" 146 - version = "0.1.68" 166 + version = "0.1.72" 147 167 source = "registry+https://github.com/rust-lang/crates.io-index" 148 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 168 + checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" 149 169 dependencies = [ 150 170 "proc-macro2", 151 171 "quote", 152 - "syn 2.0.16", 172 + "syn 2.0.27", 153 173 ] 154 174 155 175 [[package]] ··· 182 202 ] 183 203 184 204 [[package]] 205 + name = "backtrace" 206 + version = "0.3.68" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 209 + dependencies = [ 210 + "addr2line", 211 + "cc", 212 + "cfg-if", 213 + "libc", 214 + "miniz_oxide", 215 + "object", 216 + "rustc-demangle", 217 + ] 218 + 219 + [[package]] 185 220 name = "base64" 186 - version = "0.21.1" 221 + version = "0.21.2" 187 222 source = "registry+https://github.com/rust-lang/crates.io-index" 188 - checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105" 223 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 189 224 190 225 [[package]] 191 226 name = "bitflags" ··· 216 251 217 252 [[package]] 218 253 name = "built" 219 - version = "0.6.0" 254 + version = "0.6.1" 220 255 source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "96f9cdd34d6eb553f9ea20e5bf84abb7b13c729f113fc1d8e49dc00ad9fa8738" 256 + checksum = "b99c4cdc7b2c2364182331055623bdf45254fcb679fea565c40c3c11c101889a" 222 257 dependencies = [ 223 258 "cargo-lock", 224 259 "chrono", ··· 248 283 dependencies = [ 249 284 "proc-macro2", 250 285 "quote", 251 - "syn 2.0.16", 286 + "syn 2.0.27", 252 287 ] 253 288 254 289 [[package]] ··· 259 294 260 295 [[package]] 261 296 name = "cargo-lock" 262 - version = "8.0.3" 297 + version = "9.0.0" 263 298 source = "registry+https://github.com/rust-lang/crates.io-index" 264 - checksum = "031718ddb8f78aa5def78a09e90defe30151d1f6c672f937af4dd916429ed996" 299 + checksum = "e11c675378efb449ed3ce8de78d75d0d80542fc98487c26aba28eb3b82feac72" 265 300 dependencies = [ 266 301 "semver", 267 302 "serde", ··· 286 321 287 322 [[package]] 288 323 name = "chrono" 289 - version = "0.4.24" 324 + version = "0.4.26" 290 325 source = "registry+https://github.com/rust-lang/crates.io-index" 291 - checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 326 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 292 327 dependencies = [ 328 + "android-tzdata", 293 329 "iana-time-zone", 294 330 "js-sys", 295 - "num-integer", 296 331 "num-traits", 297 332 "serde", 298 333 "time", ··· 302 337 303 338 [[package]] 304 339 name = "chrono-tz" 305 - version = "0.8.2" 340 + version = "0.8.3" 306 341 source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552" 342 + checksum = "f1369bc6b9e9a7dfdae2055f6ec151fe9c554a9d23d357c0237cee2e25eaabb7" 308 343 dependencies = [ 309 344 "chrono", 310 345 "chrono-tz-build", ··· 313 348 314 349 [[package]] 315 350 name = "chrono-tz-build" 316 - version = "0.1.0" 351 + version = "0.2.0" 317 352 source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751" 353 + checksum = "e2f5ebdc942f57ed96d560a6d1a459bae5851102a25d5bf89dc04ae453e31ecf" 319 354 dependencies = [ 320 355 "parse-zoneinfo", 321 356 "phf", ··· 351 386 352 387 [[package]] 353 388 name = "comfy-table" 354 - version = "6.1.4" 389 + version = "7.0.1" 355 390 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "6e7b787b0dc42e8111badfdbe4c3059158ccb2db8780352fa1b01e8ccf45cc4d" 391 + checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b" 357 392 dependencies = [ 358 393 "crossterm", 359 394 "strum", 360 - "strum_macros", 395 + "strum_macros 0.24.3", 361 396 "unicode-width", 362 397 ] 363 398 ··· 414 449 415 450 [[package]] 416 451 name = "crossbeam-epoch" 417 - version = "0.9.14" 452 + version = "0.9.15" 418 453 source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 454 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 420 455 dependencies = [ 421 456 "autocfg", 422 457 "cfg-if", ··· 437 472 438 473 [[package]] 439 474 name = "crossbeam-utils" 440 - version = "0.8.15" 475 + version = "0.8.16" 441 476 source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 477 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 443 478 dependencies = [ 444 479 "cfg-if", 445 480 ] 446 481 447 482 [[package]] 448 483 name = "crossterm" 449 - version = "0.25.0" 484 + version = "0.26.1" 450 485 source = "registry+https://github.com/rust-lang/crates.io-index" 451 - checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" 486 + checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13" 452 487 dependencies = [ 453 488 "bitflags", 454 489 "crossterm_winapi", 455 490 "libc", 456 491 "mio", 457 - "parking_lot 0.12.1", 492 + "parking_lot", 458 493 "signal-hook", 459 494 "signal-hook-mio", 460 495 "winapi", ··· 462 497 463 498 [[package]] 464 499 name = "crossterm_winapi" 465 - version = "0.9.0" 500 + version = "0.9.1" 466 501 source = "registry+https://github.com/rust-lang/crates.io-index" 467 - checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" 502 + checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 468 503 dependencies = [ 469 504 "winapi", 470 505 ] 471 506 472 507 [[package]] 473 508 name = "dyn-clone" 474 - version = "1.0.11" 509 + version = "1.0.12" 475 510 source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 511 + checksum = "304e6508efa593091e97a9abbc10f90aa7ca635b6d2784feff3c89d41dd12272" 477 512 478 513 [[package]] 479 514 name = "either" 480 - version = "1.8.1" 515 + version = "1.9.0" 481 516 source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 517 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 483 518 484 519 [[package]] 485 520 name = "enum_dispatch" 486 - version = "0.3.11" 521 + version = "0.3.12" 487 522 source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2" 523 + checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e" 489 524 dependencies = [ 490 525 "once_cell", 491 526 "proc-macro2", 492 527 "quote", 493 - "syn 1.0.109", 528 + "syn 2.0.27", 494 529 ] 530 + 531 + [[package]] 532 + name = "equivalent" 533 + version = "1.0.1" 534 + source = "registry+https://github.com/rust-lang/crates.io-index" 535 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 495 536 496 537 [[package]] 497 538 name = "ethnum" ··· 538 579 539 580 [[package]] 540 581 name = "form_urlencoded" 541 - version = "1.1.0" 582 + version = "1.2.0" 542 583 source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 584 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 544 585 dependencies = [ 545 586 "percent-encoding", 546 587 ] ··· 601 642 dependencies = [ 602 643 "proc-macro2", 603 644 "quote", 604 - "syn 2.0.16", 645 + "syn 2.0.27", 605 646 ] 606 647 607 648 [[package]] ··· 636 677 637 678 [[package]] 638 679 name = "getrandom" 639 - version = "0.2.9" 680 + version = "0.2.10" 640 681 source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 682 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 642 683 dependencies = [ 643 684 "cfg-if", 644 685 "js-sys", ··· 648 689 ] 649 690 650 691 [[package]] 651 - name = "ghost" 652 - version = "0.1.9" 692 + name = "gimli" 693 + version = "0.27.3" 653 694 source = "registry+https://github.com/rust-lang/crates.io-index" 654 - checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357" 655 - dependencies = [ 656 - "proc-macro2", 657 - "quote", 658 - "syn 2.0.16", 659 - ] 695 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 660 696 661 697 [[package]] 662 698 name = "git2" 663 - version = "0.16.1" 699 + version = "0.17.2" 664 700 source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "ccf7f68c2995f392c49fffb4f95ae2c873297830eb25c6bc4c114ce8f4562acc" 701 + checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044" 666 702 dependencies = [ 667 703 "bitflags", 668 704 "libc", ··· 685 721 686 722 [[package]] 687 723 name = "halfbrown" 688 - version = "0.2.2" 724 + version = "0.2.4" 689 725 source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "f985624e90f861184145c13b736873a0f83cdb998a292dbb0653598ab03aecbf" 726 + checksum = "5681137554ddff44396e5f149892c769d45301dd9aa19c51602a89ee214cb0ec" 691 727 dependencies = [ 692 728 "hashbrown 0.13.2", 693 729 "serde", ··· 701 737 702 738 [[package]] 703 739 name = "hashbrown" 704 - version = "0.12.3" 740 + version = "0.13.2" 705 741 source = "registry+https://github.com/rust-lang/crates.io-index" 706 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 742 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 743 + dependencies = [ 744 + "ahash", 745 + ] 707 746 708 747 [[package]] 709 748 name = "hashbrown" 710 - version = "0.13.2" 749 + version = "0.14.0" 711 750 source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 751 + checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 713 752 dependencies = [ 714 753 "ahash", 754 + "allocator-api2", 715 755 "rayon", 716 756 ] 717 757 ··· 723 763 724 764 [[package]] 725 765 name = "hermit-abi" 726 - version = "0.2.6" 766 + version = "0.3.2" 727 767 source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 729 - dependencies = [ 730 - "libc", 731 - ] 768 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 732 769 733 770 [[package]] 734 771 name = "hex" ··· 742 779 source = "registry+https://github.com/rust-lang/crates.io-index" 743 780 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 744 781 dependencies = [ 745 - "windows-sys 0.48.0", 782 + "windows-sys", 746 783 ] 747 784 748 785 [[package]] 749 786 name = "iana-time-zone" 750 - version = "0.1.56" 787 + version = "0.1.57" 751 788 source = "registry+https://github.com/rust-lang/crates.io-index" 752 - checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 789 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 753 790 dependencies = [ 754 791 "android_system_properties", 755 792 "core-foundation-sys", ··· 770 807 771 808 [[package]] 772 809 name = "idna" 773 - version = "0.3.0" 810 + version = "0.4.0" 774 811 source = "registry+https://github.com/rust-lang/crates.io-index" 775 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 812 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 776 813 dependencies = [ 777 814 "unicode-bidi", 778 815 "unicode-normalization", ··· 780 817 781 818 [[package]] 782 819 name = "indexmap" 783 - version = "1.9.3" 820 + version = "2.0.0" 784 821 source = "registry+https://github.com/rust-lang/crates.io-index" 785 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 822 + checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 786 823 dependencies = [ 787 - "autocfg", 788 - "hashbrown 0.12.3", 824 + "equivalent", 825 + "hashbrown 0.14.0", 789 826 "serde", 790 827 ] 791 828 ··· 796 833 checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 797 834 798 835 [[package]] 799 - name = "instant" 800 - version = "0.1.12" 801 - source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 803 - dependencies = [ 804 - "cfg-if", 805 - ] 806 - 807 - [[package]] 808 836 name = "inventory" 809 - version = "0.3.6" 837 + version = "0.3.11" 810 838 source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "e0539b5de9241582ce6bd6b0ba7399313560151e58c9aaf8b74b711b1bdce644" 812 - dependencies = [ 813 - "ghost", 814 - ] 839 + checksum = "a53088c87cf71c9d4f3372a2cb9eea1e7b8a0b1bf8b7f7d23fe5b76dbb07e63b" 815 840 816 841 [[package]] 817 842 name = "itoa" 818 - version = "1.0.6" 843 + version = "1.0.9" 819 844 source = "registry+https://github.com/rust-lang/crates.io-index" 820 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 845 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 821 846 822 847 [[package]] 823 848 name = "itoap" ··· 856 881 857 882 [[package]] 858 883 name = "js-sys" 859 - version = "0.3.63" 884 + version = "0.3.64" 860 885 source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 886 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 862 887 dependencies = [ 863 888 "wasm-bindgen", 864 889 ] ··· 948 973 949 974 [[package]] 950 975 name = "libc" 951 - version = "0.2.144" 976 + version = "0.2.147" 952 977 source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 978 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 954 979 955 980 [[package]] 956 981 name = "libflate" ··· 974 999 975 1000 [[package]] 976 1001 name = "libgit2-sys" 977 - version = "0.14.2+1.5.1" 1002 + version = "0.15.2+1.6.4" 978 1003 source = "registry+https://github.com/rust-lang/crates.io-index" 979 - checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4" 1004 + checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa" 980 1005 dependencies = [ 981 1006 "cc", 982 1007 "libc", ··· 1002 1027 1003 1028 [[package]] 1004 1029 name = "libz-sys" 1005 - version = "1.1.9" 1030 + version = "1.1.12" 1006 1031 source = "registry+https://github.com/rust-lang/crates.io-index" 1007 - checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 1032 + checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 1008 1033 dependencies = [ 1009 1034 "cc", 1010 1035 "libc", ··· 1014 1039 1015 1040 [[package]] 1016 1041 name = "lock_api" 1017 - version = "0.4.9" 1042 + version = "0.4.10" 1018 1043 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1044 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1020 1045 dependencies = [ 1021 1046 "autocfg", 1022 1047 "scopeguard", ··· 1024 1049 1025 1050 [[package]] 1026 1051 name = "log" 1027 - version = "0.4.17" 1052 + version = "0.4.19" 1028 1053 source = "registry+https://github.com/rust-lang/crates.io-index" 1029 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1030 - dependencies = [ 1031 - "cfg-if", 1032 - ] 1054 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1033 1055 1034 1056 [[package]] 1035 1057 name = "lz4" ··· 1078 1100 1079 1101 [[package]] 1080 1102 name = "memoffset" 1081 - version = "0.8.0" 1103 + version = "0.9.0" 1082 1104 source = "registry+https://github.com/rust-lang/crates.io-index" 1083 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1105 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1084 1106 dependencies = [ 1085 1107 "autocfg", 1086 1108 ] ··· 1105 1127 1106 1128 [[package]] 1107 1129 name = "mio" 1108 - version = "0.8.6" 1130 + version = "0.8.8" 1109 1131 source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 1132 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1111 1133 dependencies = [ 1112 1134 "libc", 1113 1135 "log", 1114 1136 "wasi 0.11.0+wasi-snapshot-preview1", 1115 - "windows-sys 0.45.0", 1137 + "windows-sys", 1116 1138 ] 1117 1139 1118 1140 [[package]] ··· 1189 1211 1190 1212 [[package]] 1191 1213 name = "num-traits" 1192 - version = "0.2.15" 1214 + version = "0.2.16" 1193 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1194 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1216 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1195 1217 dependencies = [ 1196 1218 "autocfg", 1197 1219 "libm", ··· 1199 1221 1200 1222 [[package]] 1201 1223 name = "num_cpus" 1202 - version = "1.15.0" 1224 + version = "1.16.0" 1203 1225 source = "registry+https://github.com/rust-lang/crates.io-index" 1204 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1226 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1205 1227 dependencies = [ 1206 1228 "hermit-abi", 1207 1229 "libc", ··· 1209 1231 1210 1232 [[package]] 1211 1233 name = "numpy" 1212 - version = "0.18.0" 1234 + version = "0.19.0" 1213 1235 source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "96b0fee4571867d318651c24f4a570c3f18408cf95f16ccb576b3ce85496a46e" 1236 + checksum = "437213adf41bbccf4aeae535fbfcdad0f6fed241e1ae182ebe97fa1f3ce19389" 1215 1237 dependencies = [ 1216 1238 "libc", 1217 1239 "ndarray", ··· 1223 1245 ] 1224 1246 1225 1247 [[package]] 1226 - name = "once_cell" 1227 - version = "1.17.1" 1248 + name = "object" 1249 + version = "0.31.1" 1228 1250 source = "registry+https://github.com/rust-lang/crates.io-index" 1229 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1251 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1252 + dependencies = [ 1253 + "memchr", 1254 + ] 1230 1255 1231 1256 [[package]] 1232 - name = "parking_lot" 1233 - version = "0.11.2" 1257 + name = "once_cell" 1258 + version = "1.18.0" 1234 1259 source = "registry+https://github.com/rust-lang/crates.io-index" 1235 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1236 - dependencies = [ 1237 - "instant", 1238 - "lock_api", 1239 - "parking_lot_core 0.8.6", 1240 - ] 1260 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1241 1261 1242 1262 [[package]] 1243 1263 name = "parking_lot" ··· 1246 1266 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1247 1267 dependencies = [ 1248 1268 "lock_api", 1249 - "parking_lot_core 0.9.7", 1269 + "parking_lot_core", 1250 1270 ] 1251 1271 1252 1272 [[package]] 1253 1273 name = "parking_lot_core" 1254 - version = "0.8.6" 1274 + version = "0.9.8" 1255 1275 source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 1276 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1257 1277 dependencies = [ 1258 1278 "cfg-if", 1259 - "instant", 1260 1279 "libc", 1261 1280 "redox_syscall", 1262 1281 "smallvec", 1263 - "winapi", 1264 - ] 1265 - 1266 - [[package]] 1267 - name = "parking_lot_core" 1268 - version = "0.9.7" 1269 - source = "registry+https://github.com/rust-lang/crates.io-index" 1270 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1271 - dependencies = [ 1272 - "cfg-if", 1273 - "libc", 1274 - "redox_syscall", 1275 - "smallvec", 1276 - "windows-sys 0.45.0", 1282 + "windows-targets", 1277 1283 ] 1278 1284 1279 1285 [[package]] ··· 1315 1321 1316 1322 [[package]] 1317 1323 name = "percent-encoding" 1318 - version = "2.2.0" 1324 + version = "2.3.0" 1319 1325 source = "registry+https://github.com/rust-lang/crates.io-index" 1320 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1326 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1321 1327 1322 1328 [[package]] 1323 1329 name = "phf" 1324 - version = "0.11.1" 1330 + version = "0.11.2" 1325 1331 source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 1332 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 1327 1333 dependencies = [ 1328 1334 "phf_shared", 1329 1335 ] 1330 1336 1331 1337 [[package]] 1332 1338 name = "phf_codegen" 1333 - version = "0.11.1" 1339 + version = "0.11.2" 1334 1340 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 - checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770" 1341 + checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 1336 1342 dependencies = [ 1337 1343 "phf_generator", 1338 1344 "phf_shared", ··· 1340 1346 1341 1347 [[package]] 1342 1348 name = "phf_generator" 1343 - version = "0.11.1" 1349 + version = "0.11.2" 1344 1350 source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 1351 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 1346 1352 dependencies = [ 1347 1353 "phf_shared", 1348 1354 "rand", ··· 1350 1356 1351 1357 [[package]] 1352 1358 name = "phf_shared" 1353 - version = "0.11.1" 1359 + version = "0.11.2" 1354 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 1361 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 1356 1362 dependencies = [ 1357 1363 "siphasher", 1358 1364 ] 1359 1365 1360 1366 [[package]] 1361 1367 name = "pin-project-lite" 1362 - version = "0.2.9" 1368 + version = "0.2.10" 1363 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1370 + checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1365 1371 1366 1372 [[package]] 1367 1373 name = "pin-utils" ··· 1386 1392 1387 1393 [[package]] 1388 1394 name = "polars" 1389 - version = "0.30.0" 1395 + version = "0.31.1" 1390 1396 dependencies = [ 1391 1397 "getrandom", 1392 1398 "polars-core", ··· 1400 1406 1401 1407 [[package]] 1402 1408 name = "polars-algo" 1403 - version = "0.30.0" 1409 + version = "0.31.1" 1404 1410 dependencies = [ 1405 1411 "polars-core", 1406 1412 "polars-lazy", ··· 1409 1415 1410 1416 [[package]] 1411 1417 name = "polars-arrow" 1412 - version = "0.30.0" 1418 + version = "0.31.1" 1413 1419 dependencies = [ 1414 1420 "arrow2", 1415 1421 "atoi", 1416 1422 "chrono", 1417 1423 "chrono-tz", 1418 - "hashbrown 0.13.2", 1424 + "ethnum", 1425 + "hashbrown 0.14.0", 1419 1426 "multiversion", 1420 1427 "num-traits", 1421 1428 "polars-error", 1422 1429 "serde", 1423 1430 "thiserror", 1431 + "version_check", 1424 1432 ] 1425 1433 1426 1434 [[package]] 1427 1435 name = "polars-core" 1428 - version = "0.30.0" 1436 + version = "0.31.1" 1429 1437 dependencies = [ 1430 1438 "ahash", 1431 1439 "arrow2", ··· 1434 1442 "chrono-tz", 1435 1443 "comfy-table", 1436 1444 "either", 1437 - "hashbrown 0.13.2", 1445 + "hashbrown 0.14.0", 1438 1446 "indexmap", 1439 1447 "itoap", 1440 1448 "ndarray", ··· 1452 1460 "serde_json", 1453 1461 "smartstring", 1454 1462 "thiserror", 1455 - "wasm-timer", 1463 + "version_check", 1456 1464 "xxhash-rust", 1457 1465 ] 1458 1466 1459 1467 [[package]] 1460 1468 name = "polars-error" 1461 - version = "0.30.0" 1469 + version = "0.31.1" 1462 1470 dependencies = [ 1463 1471 "arrow2", 1464 1472 "regex", ··· 1467 1475 1468 1476 [[package]] 1469 1477 name = "polars-io" 1470 - version = "0.30.0" 1478 + version = "0.31.1" 1471 1479 dependencies = [ 1472 1480 "ahash", 1473 1481 "arrow2", ··· 1502 1510 1503 1511 [[package]] 1504 1512 name = "polars-json" 1505 - version = "0.30.0" 1513 + version = "0.31.1" 1506 1514 dependencies = [ 1507 1515 "ahash", 1508 1516 "arrow2", 1509 1517 "fallible-streaming-iterator", 1510 - "hashbrown 0.13.2", 1518 + "hashbrown 0.14.0", 1511 1519 "indexmap", 1512 1520 "num-traits", 1513 1521 "polars-arrow", ··· 1518 1526 1519 1527 [[package]] 1520 1528 name = "polars-lazy" 1521 - version = "0.30.0" 1529 + version = "0.31.1" 1522 1530 dependencies = [ 1523 1531 "ahash", 1524 1532 "bitflags", ··· 1536 1544 "pyo3", 1537 1545 "rayon", 1538 1546 "smartstring", 1547 + "version_check", 1539 1548 ] 1540 1549 1541 1550 [[package]] 1542 1551 name = "polars-ops" 1543 - version = "0.30.0" 1552 + version = "0.31.1" 1544 1553 dependencies = [ 1545 1554 "argminmax", 1546 1555 "arrow2", 1547 1556 "base64", 1557 + "chrono", 1558 + "chrono-tz", 1548 1559 "either", 1549 1560 "hex", 1561 + "indexmap", 1550 1562 "jsonpath_lib", 1551 1563 "memchr", 1552 1564 "polars-arrow", ··· 1556 1568 "serde", 1557 1569 "serde_json", 1558 1570 "smartstring", 1571 + "version_check", 1559 1572 ] 1560 1573 1561 1574 [[package]] 1562 1575 name = "polars-pipe" 1563 - version = "0.30.0" 1576 + version = "0.31.1" 1564 1577 dependencies = [ 1565 1578 "crossbeam-channel", 1566 1579 "crossbeam-queue", 1567 1580 "enum_dispatch", 1568 - "hashbrown 0.13.2", 1581 + "hashbrown 0.14.0", 1569 1582 "num-traits", 1570 1583 "polars-arrow", 1571 1584 "polars-core", ··· 1576 1589 "polars-utils", 1577 1590 "rayon", 1578 1591 "smartstring", 1592 + "version_check", 1579 1593 ] 1580 1594 1581 1595 [[package]] 1582 1596 name = "polars-plan" 1583 - version = "0.30.0" 1597 + version = "0.31.1" 1584 1598 dependencies = [ 1585 1599 "ahash", 1586 1600 "arrow2", 1587 1601 "chrono", 1588 1602 "chrono-tz", 1603 + "ciborium", 1589 1604 "once_cell", 1590 1605 "polars-arrow", 1591 1606 "polars-core", ··· 1598 1613 "regex", 1599 1614 "serde", 1600 1615 "smartstring", 1616 + "strum_macros 0.25.1", 1617 + "version_check", 1601 1618 ] 1602 1619 1603 1620 [[package]] 1604 1621 name = "polars-row" 1605 - version = "0.30.0" 1622 + version = "0.31.1" 1606 1623 dependencies = [ 1607 1624 "arrow2", 1608 1625 "polars-error", ··· 1611 1628 1612 1629 [[package]] 1613 1630 name = "polars-sql" 1614 - version = "0.30.0" 1631 + version = "0.31.1" 1615 1632 dependencies = [ 1616 1633 "polars-arrow", 1617 1634 "polars-core", ··· 1624 1641 1625 1642 [[package]] 1626 1643 name = "polars-time" 1627 - version = "0.30.0" 1644 + version = "0.31.1" 1628 1645 dependencies = [ 1629 1646 "arrow2", 1630 1647 "atoi", ··· 1643 1660 1644 1661 [[package]] 1645 1662 name = "polars-utils" 1646 - version = "0.30.0" 1663 + version = "0.31.1" 1647 1664 dependencies = [ 1648 1665 "ahash", 1649 - "hashbrown 0.13.2", 1666 + "hashbrown 0.14.0", 1667 + "num-traits", 1650 1668 "once_cell", 1669 + "polars-error", 1651 1670 "rayon", 1652 1671 "smartstring", 1653 1672 "sysinfo", 1673 + "version_check", 1654 1674 ] 1655 1675 1656 1676 [[package]] ··· 1661 1681 1662 1682 [[package]] 1663 1683 name = "proc-macro2" 1664 - version = "1.0.58" 1684 + version = "1.0.66" 1665 1685 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 1686 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1667 1687 dependencies = [ 1668 1688 "unicode-ident", 1669 1689 ] 1670 1690 1671 1691 [[package]] 1672 1692 name = "py-polars" 1673 - version = "0.18.0" 1693 + version = "0.18.13" 1674 1694 dependencies = [ 1675 1695 "ahash", 1676 1696 "built", 1677 1697 "ciborium", 1698 + "either", 1678 1699 "jemallocator", 1679 1700 "lexical-core", 1680 1701 "libc", ··· 1685 1706 "polars", 1686 1707 "polars-algo", 1687 1708 "polars-core", 1709 + "polars-error", 1688 1710 "polars-lazy", 1689 1711 "pyo3", 1690 1712 "pyo3-built", ··· 1695 1717 1696 1718 [[package]] 1697 1719 name = "pyo3" 1698 - version = "0.18.3" 1720 + version = "0.19.1" 1699 1721 source = "registry+https://github.com/rust-lang/crates.io-index" 1700 - checksum = "e3b1ac5b3731ba34fdaa9785f8d74d17448cd18f30cf19e0c7e7b1fdb5272109" 1722 + checksum = "ffb88ae05f306b4bfcde40ac4a51dc0b05936a9207a4b75b798c7729c4258a59" 1701 1723 dependencies = [ 1702 1724 "cfg-if", 1703 1725 "indoc", 1704 1726 "inventory", 1705 1727 "libc", 1706 1728 "memoffset", 1707 - "parking_lot 0.12.1", 1729 + "parking_lot", 1708 1730 "pyo3-build-config", 1709 1731 "pyo3-ffi", 1710 1732 "pyo3-macros", ··· 1713 1735 1714 1736 [[package]] 1715 1737 name = "pyo3-build-config" 1716 - version = "0.18.3" 1738 + version = "0.19.1" 1717 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "9cb946f5ac61bb61a5014924910d936ebd2b23b705f7a4a3c40b05c720b079a3" 1740 + checksum = "554db24f0b3c180a9c0b1268f91287ab3f17c162e15b54caaae5a6b3773396b0" 1719 1741 dependencies = [ 1720 1742 "once_cell", 1721 1743 "target-lexicon", ··· 1729 1751 1730 1752 [[package]] 1731 1753 name = "pyo3-ffi" 1732 - version = "0.18.3" 1754 + version = "0.19.1" 1733 1755 source = "registry+https://github.com/rust-lang/crates.io-index" 1734 - checksum = "fd4d7c5337821916ea2a1d21d1092e8443cf34879e53a0ac653fbb98f44ff65c" 1756 + checksum = "922ede8759e8600ad4da3195ae41259654b9c55da4f7eec84a0ccc7d067a70a4" 1735 1757 dependencies = [ 1736 1758 "libc", 1737 1759 "pyo3-build-config", ··· 1739 1761 1740 1762 [[package]] 1741 1763 name = "pyo3-macros" 1742 - version = "0.18.3" 1764 + version = "0.19.1" 1743 1765 source = "registry+https://github.com/rust-lang/crates.io-index" 1744 - checksum = "a9d39c55dab3fc5a4b25bbd1ac10a2da452c4aca13bb450f22818a002e29648d" 1766 + checksum = "8a5caec6a1dd355964a841fcbeeb1b89fe4146c87295573f94228911af3cc5a2" 1745 1767 dependencies = [ 1746 1768 "proc-macro2", 1747 1769 "pyo3-macros-backend", ··· 1751 1773 1752 1774 [[package]] 1753 1775 name = "pyo3-macros-backend" 1754 - version = "0.18.3" 1776 + version = "0.19.1" 1755 1777 source = "registry+https://github.com/rust-lang/crates.io-index" 1756 - checksum = "97daff08a4c48320587b5224cc98d609e3c27b6d437315bd40b605c98eeb5918" 1778 + checksum = "e0b78ccbb160db1556cdb6fd96c50334c5d4ec44dc5e0a968d0a1208fa0efa8b" 1757 1779 dependencies = [ 1758 1780 "proc-macro2", 1759 1781 "quote", ··· 1762 1784 1763 1785 [[package]] 1764 1786 name = "quote" 1765 - version = "1.0.27" 1787 + version = "1.0.32" 1766 1788 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 - checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 1789 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 1768 1790 dependencies = [ 1769 1791 "proc-macro2", 1770 1792 ] ··· 1839 1861 1840 1862 [[package]] 1841 1863 name = "redox_syscall" 1842 - version = "0.2.16" 1864 + version = "0.3.5" 1843 1865 source = "registry+https://github.com/rust-lang/crates.io-index" 1844 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1866 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1845 1867 dependencies = [ 1846 1868 "bitflags", 1847 1869 ] 1848 1870 1849 1871 [[package]] 1850 1872 name = "regex" 1851 - version = "1.8.2" 1873 + version = "1.9.1" 1852 1874 source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974" 1875 + checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 1854 1876 dependencies = [ 1855 1877 "aho-corasick", 1856 1878 "memchr", 1857 - "regex-syntax 0.7.2", 1879 + "regex-automata", 1880 + "regex-syntax 0.7.4", 1881 + ] 1882 + 1883 + [[package]] 1884 + name = "regex-automata" 1885 + version = "0.3.3" 1886 + source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 1888 + dependencies = [ 1889 + "aho-corasick", 1890 + "memchr", 1891 + "regex-syntax 0.7.4", 1858 1892 ] 1859 1893 1860 1894 [[package]] ··· 1865 1899 1866 1900 [[package]] 1867 1901 name = "regex-syntax" 1868 - version = "0.7.2" 1902 + version = "0.7.4" 1869 1903 source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 1904 + checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 1871 1905 1872 1906 [[package]] 1873 1907 name = "rle-decode-fast" ··· 1876 1910 checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 1877 1911 1878 1912 [[package]] 1913 + name = "rustc-demangle" 1914 + version = "0.1.23" 1915 + source = "registry+https://github.com/rust-lang/crates.io-index" 1916 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1917 + 1918 + [[package]] 1879 1919 name = "rustc-hash" 1880 1920 version = "1.1.0" 1881 1921 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1892 1932 1893 1933 [[package]] 1894 1934 name = "rustversion" 1895 - version = "1.0.12" 1935 + version = "1.0.14" 1896 1936 source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 1937 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 1898 1938 1899 1939 [[package]] 1900 1940 name = "ryu" 1901 - version = "1.0.13" 1941 + version = "1.0.15" 1902 1942 source = "registry+https://github.com/rust-lang/crates.io-index" 1903 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1943 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1904 1944 1905 1945 [[package]] 1906 1946 name = "scopeguard" 1907 - version = "1.1.0" 1947 + version = "1.2.0" 1908 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1909 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1949 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1910 1950 1911 1951 [[package]] 1912 1952 name = "semver" 1913 - version = "1.0.17" 1953 + version = "1.0.18" 1914 1954 source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1955 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 1916 1956 dependencies = [ 1917 1957 "serde", 1918 1958 ] 1919 1959 1920 1960 [[package]] 1921 1961 name = "seq-macro" 1922 - version = "0.3.3" 1962 + version = "0.3.5" 1923 1963 source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - checksum = "e6b44e8fc93a14e66336d230954dda83d18b4605ccace8fe09bc7514a71ad0bc" 1964 + checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 1925 1965 1926 1966 [[package]] 1927 1967 name = "serde" 1928 - version = "1.0.163" 1968 + version = "1.0.176" 1929 1969 source = "registry+https://github.com/rust-lang/crates.io-index" 1930 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 1970 + checksum = "76dc28c9523c5d70816e393136b86d48909cfb27cecaa902d338c19ed47164dc" 1931 1971 dependencies = [ 1932 1972 "serde_derive", 1933 1973 ] 1934 1974 1935 1975 [[package]] 1936 1976 name = "serde_derive" 1937 - version = "1.0.163" 1977 + version = "1.0.176" 1938 1978 source = "registry+https://github.com/rust-lang/crates.io-index" 1939 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 1979 + checksum = "a4e7b8c5dc823e3b90651ff1d3808419cd14e5ad76de04feaf37da114e7a306f" 1940 1980 dependencies = [ 1941 1981 "proc-macro2", 1942 1982 "quote", 1943 - "syn 2.0.16", 1983 + "syn 2.0.27", 1944 1984 ] 1945 1985 1946 1986 [[package]] 1947 1987 name = "serde_json" 1948 - version = "1.0.96" 1988 + version = "1.0.104" 1949 1989 source = "registry+https://github.com/rust-lang/crates.io-index" 1950 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1990 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 1951 1991 dependencies = [ 1952 1992 "indexmap", 1953 1993 "itoa", ··· 1956 1996 ] 1957 1997 1958 1998 [[package]] 1999 + name = "serde_spanned" 2000 + version = "0.6.3" 2001 + source = "registry+https://github.com/rust-lang/crates.io-index" 2002 + checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 2003 + dependencies = [ 2004 + "serde", 2005 + ] 2006 + 2007 + [[package]] 1959 2008 name = "signal-hook" 1960 - version = "0.3.15" 2009 + version = "0.3.17" 1961 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 2011 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 1963 2012 dependencies = [ 1964 2013 "libc", 1965 2014 "signal-hook-registry", ··· 1987 2036 1988 2037 [[package]] 1989 2038 name = "simd-json" 1990 - version = "0.10.2" 1991 - source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "5b001e6c10fcba79ac15990241d37c3f8c6ba4f9a14ee35fcebc0c067514b83a" 2039 + version = "0.10.0" 2040 + source = "git+https://github.com/ritchie46/simd-json?branch=initialize#946b316f686c6ad3050f694ea434248c38aa321d" 1993 2041 dependencies = [ 1994 2042 "ahash", 1995 2043 "halfbrown", ··· 2024 2072 2025 2073 [[package]] 2026 2074 name = "smallvec" 2027 - version = "1.10.0" 2075 + version = "1.11.0" 2028 2076 source = "registry+https://github.com/rust-lang/crates.io-index" 2029 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2077 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2030 2078 2031 2079 [[package]] 2032 2080 name = "smartstring" ··· 2112 2160 ] 2113 2161 2114 2162 [[package]] 2163 + name = "strum_macros" 2164 + version = "0.25.1" 2165 + source = "registry+https://github.com/rust-lang/crates.io-index" 2166 + checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232" 2167 + dependencies = [ 2168 + "heck", 2169 + "proc-macro2", 2170 + "quote", 2171 + "rustversion", 2172 + "syn 2.0.27", 2173 + ] 2174 + 2175 + [[package]] 2115 2176 name = "syn" 2116 2177 version = "1.0.109" 2117 2178 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2124 2185 2125 2186 [[package]] 2126 2187 name = "syn" 2127 - version = "2.0.16" 2188 + version = "2.0.27" 2128 2189 source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 2190 + checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" 2130 2191 dependencies = [ 2131 2192 "proc-macro2", 2132 2193 "quote", ··· 2135 2196 2136 2197 [[package]] 2137 2198 name = "sysinfo" 2138 - version = "0.29.0" 2199 + version = "0.29.7" 2139 2200 source = "registry+https://github.com/rust-lang/crates.io-index" 2140 - checksum = "02f1dc6930a439cc5d154221b5387d153f8183529b07c19aca24ea31e0a167e1" 2201 + checksum = "165d6d8539689e3d3bc8b98ac59541e1f21c7de7c85d60dc80e43ae0ed2113db" 2141 2202 dependencies = [ 2142 2203 "cfg-if", 2143 2204 "core-foundation-sys", ··· 2155 2216 2156 2217 [[package]] 2157 2218 name = "target-lexicon" 2158 - version = "0.12.7" 2219 + version = "0.12.10" 2159 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" 2221 + checksum = "1d2faeef5759ab89935255b1a4cd98e0baf99d1085e37d36599c625dac49ae8e" 2161 2222 2162 2223 [[package]] 2163 2224 name = "thiserror" 2164 - version = "1.0.40" 2225 + version = "1.0.44" 2165 2226 source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2227 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 2167 2228 dependencies = [ 2168 2229 "thiserror-impl", 2169 2230 ] 2170 2231 2171 2232 [[package]] 2172 2233 name = "thiserror-impl" 2173 - version = "1.0.40" 2234 + version = "1.0.44" 2174 2235 source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2236 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 2176 2237 dependencies = [ 2177 2238 "proc-macro2", 2178 2239 "quote", 2179 - "syn 2.0.16", 2240 + "syn 2.0.27", 2180 2241 ] 2181 2242 2182 2243 [[package]] ··· 2207 2268 2208 2269 [[package]] 2209 2270 name = "tokio" 2210 - version = "1.28.1" 2271 + version = "1.29.1" 2211 2272 source = "registry+https://github.com/rust-lang/crates.io-index" 2212 - checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" 2273 + checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 2213 2274 dependencies = [ 2214 2275 "autocfg", 2276 + "backtrace", 2215 2277 "libc", 2216 2278 "mio", 2217 2279 "pin-project-lite", 2218 2280 "socket2", 2219 - "windows-sys 0.48.0", 2281 + "windows-sys", 2220 2282 ] 2221 2283 2222 2284 [[package]] 2223 2285 name = "toml" 2224 - version = "0.5.11" 2286 + version = "0.7.6" 2287 + source = "registry+https://github.com/rust-lang/crates.io-index" 2288 + checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 2289 + dependencies = [ 2290 + "serde", 2291 + "serde_spanned", 2292 + "toml_datetime", 2293 + "toml_edit", 2294 + ] 2295 + 2296 + [[package]] 2297 + name = "toml_datetime" 2298 + version = "0.6.3" 2299 + source = "registry+https://github.com/rust-lang/crates.io-index" 2300 + checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2301 + dependencies = [ 2302 + "serde", 2303 + ] 2304 + 2305 + [[package]] 2306 + name = "toml_edit" 2307 + version = "0.19.14" 2225 2308 source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2309 + checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 2227 2310 dependencies = [ 2311 + "indexmap", 2228 2312 "serde", 2313 + "serde_spanned", 2314 + "toml_datetime", 2315 + "winnow", 2229 2316 ] 2230 2317 2231 2318 [[package]] ··· 2236 2323 2237 2324 [[package]] 2238 2325 name = "unicode-ident" 2239 - version = "1.0.8" 2326 + version = "1.0.11" 2240 2327 source = "registry+https://github.com/rust-lang/crates.io-index" 2241 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2328 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 2242 2329 2243 2330 [[package]] 2244 2331 name = "unicode-normalization" ··· 2263 2350 2264 2351 [[package]] 2265 2352 name = "url" 2266 - version = "2.3.1" 2353 + version = "2.4.0" 2267 2354 source = "registry+https://github.com/rust-lang/crates.io-index" 2268 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2355 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 2269 2356 dependencies = [ 2270 2357 "form_urlencoded", 2271 2358 "idna", ··· 2310 2397 2311 2398 [[package]] 2312 2399 name = "wasm-bindgen" 2313 - version = "0.2.86" 2400 + version = "0.2.87" 2314 2401 source = "registry+https://github.com/rust-lang/crates.io-index" 2315 - checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 2402 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 2316 2403 dependencies = [ 2317 2404 "cfg-if", 2318 2405 "wasm-bindgen-macro", ··· 2320 2407 2321 2408 [[package]] 2322 2409 name = "wasm-bindgen-backend" 2323 - version = "0.2.86" 2410 + version = "0.2.87" 2324 2411 source = "registry+https://github.com/rust-lang/crates.io-index" 2325 - checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 2412 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 2326 2413 dependencies = [ 2327 2414 "bumpalo", 2328 2415 "log", 2329 2416 "once_cell", 2330 2417 "proc-macro2", 2331 2418 "quote", 2332 - "syn 2.0.16", 2419 + "syn 2.0.27", 2333 2420 "wasm-bindgen-shared", 2334 2421 ] 2335 2422 2336 2423 [[package]] 2337 - name = "wasm-bindgen-futures" 2338 - version = "0.4.36" 2339 - source = "registry+https://github.com/rust-lang/crates.io-index" 2340 - checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" 2341 - dependencies = [ 2342 - "cfg-if", 2343 - "js-sys", 2344 - "wasm-bindgen", 2345 - "web-sys", 2346 - ] 2347 - 2348 - [[package]] 2349 2424 name = "wasm-bindgen-macro" 2350 - version = "0.2.86" 2425 + version = "0.2.87" 2351 2426 source = "registry+https://github.com/rust-lang/crates.io-index" 2352 - checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 2427 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 2353 2428 dependencies = [ 2354 2429 "quote", 2355 2430 "wasm-bindgen-macro-support", ··· 2357 2432 2358 2433 [[package]] 2359 2434 name = "wasm-bindgen-macro-support" 2360 - version = "0.2.86" 2435 + version = "0.2.87" 2361 2436 source = "registry+https://github.com/rust-lang/crates.io-index" 2362 - checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 2437 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 2363 2438 dependencies = [ 2364 2439 "proc-macro2", 2365 2440 "quote", 2366 - "syn 2.0.16", 2441 + "syn 2.0.27", 2367 2442 "wasm-bindgen-backend", 2368 2443 "wasm-bindgen-shared", 2369 2444 ] 2370 2445 2371 2446 [[package]] 2372 2447 name = "wasm-bindgen-shared" 2373 - version = "0.2.86" 2374 - source = "registry+https://github.com/rust-lang/crates.io-index" 2375 - checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2376 - 2377 - [[package]] 2378 - name = "wasm-timer" 2379 - version = "0.2.5" 2380 - source = "registry+https://github.com/rust-lang/crates.io-index" 2381 - checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 2382 - dependencies = [ 2383 - "futures", 2384 - "js-sys", 2385 - "parking_lot 0.11.2", 2386 - "pin-utils", 2387 - "wasm-bindgen", 2388 - "wasm-bindgen-futures", 2389 - "web-sys", 2390 - ] 2391 - 2392 - [[package]] 2393 - name = "web-sys" 2394 - version = "0.3.63" 2448 + version = "0.2.87" 2395 2449 source = "registry+https://github.com/rust-lang/crates.io-index" 2396 - checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 2397 - dependencies = [ 2398 - "js-sys", 2399 - "wasm-bindgen", 2400 - ] 2450 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2401 2451 2402 2452 [[package]] 2403 2453 name = "winapi" ··· 2427 2477 source = "registry+https://github.com/rust-lang/crates.io-index" 2428 2478 checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2429 2479 dependencies = [ 2430 - "windows-targets 0.48.0", 2431 - ] 2432 - 2433 - [[package]] 2434 - name = "windows-sys" 2435 - version = "0.45.0" 2436 - source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2438 - dependencies = [ 2439 - "windows-targets 0.42.2", 2480 + "windows-targets", 2440 2481 ] 2441 2482 2442 2483 [[package]] ··· 2445 2486 source = "registry+https://github.com/rust-lang/crates.io-index" 2446 2487 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2447 2488 dependencies = [ 2448 - "windows-targets 0.48.0", 2489 + "windows-targets", 2449 2490 ] 2450 2491 2451 2492 [[package]] 2452 2493 name = "windows-targets" 2453 - version = "0.42.2" 2494 + version = "0.48.1" 2454 2495 source = "registry+https://github.com/rust-lang/crates.io-index" 2455 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2496 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2456 2497 dependencies = [ 2457 - "windows_aarch64_gnullvm 0.42.2", 2458 - "windows_aarch64_msvc 0.42.2", 2459 - "windows_i686_gnu 0.42.2", 2460 - "windows_i686_msvc 0.42.2", 2461 - "windows_x86_64_gnu 0.42.2", 2462 - "windows_x86_64_gnullvm 0.42.2", 2463 - "windows_x86_64_msvc 0.42.2", 2498 + "windows_aarch64_gnullvm", 2499 + "windows_aarch64_msvc", 2500 + "windows_i686_gnu", 2501 + "windows_i686_msvc", 2502 + "windows_x86_64_gnu", 2503 + "windows_x86_64_gnullvm", 2504 + "windows_x86_64_msvc", 2464 2505 ] 2465 2506 2466 2507 [[package]] 2467 - name = "windows-targets" 2468 - version = "0.48.0" 2469 - source = "registry+https://github.com/rust-lang/crates.io-index" 2470 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2471 - dependencies = [ 2472 - "windows_aarch64_gnullvm 0.48.0", 2473 - "windows_aarch64_msvc 0.48.0", 2474 - "windows_i686_gnu 0.48.0", 2475 - "windows_i686_msvc 0.48.0", 2476 - "windows_x86_64_gnu 0.48.0", 2477 - "windows_x86_64_gnullvm 0.48.0", 2478 - "windows_x86_64_msvc 0.48.0", 2479 - ] 2480 - 2481 - [[package]] 2482 - name = "windows_aarch64_gnullvm" 2483 - version = "0.42.2" 2484 - source = "registry+https://github.com/rust-lang/crates.io-index" 2485 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2486 - 2487 - [[package]] 2488 2508 name = "windows_aarch64_gnullvm" 2489 2509 version = "0.48.0" 2490 2510 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2492 2512 2493 2513 [[package]] 2494 2514 name = "windows_aarch64_msvc" 2495 - version = "0.42.2" 2496 - source = "registry+https://github.com/rust-lang/crates.io-index" 2497 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2498 - 2499 - [[package]] 2500 - name = "windows_aarch64_msvc" 2501 2515 version = "0.48.0" 2502 2516 source = "registry+https://github.com/rust-lang/crates.io-index" 2503 2517 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2504 2518 2505 2519 [[package]] 2506 2520 name = "windows_i686_gnu" 2507 - version = "0.42.2" 2508 - source = "registry+https://github.com/rust-lang/crates.io-index" 2509 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2510 - 2511 - [[package]] 2512 - name = "windows_i686_gnu" 2513 2521 version = "0.48.0" 2514 2522 source = "registry+https://github.com/rust-lang/crates.io-index" 2515 2523 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2516 2524 2517 2525 [[package]] 2518 2526 name = "windows_i686_msvc" 2519 - version = "0.42.2" 2520 - source = "registry+https://github.com/rust-lang/crates.io-index" 2521 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2522 - 2523 - [[package]] 2524 - name = "windows_i686_msvc" 2525 2527 version = "0.48.0" 2526 2528 source = "registry+https://github.com/rust-lang/crates.io-index" 2527 2529 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2528 2530 2529 2531 [[package]] 2530 2532 name = "windows_x86_64_gnu" 2531 - version = "0.42.2" 2532 - source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2534 - 2535 - [[package]] 2536 - name = "windows_x86_64_gnu" 2537 2533 version = "0.48.0" 2538 2534 source = "registry+https://github.com/rust-lang/crates.io-index" 2539 2535 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2540 2536 2541 2537 [[package]] 2542 2538 name = "windows_x86_64_gnullvm" 2543 - version = "0.42.2" 2544 - source = "registry+https://github.com/rust-lang/crates.io-index" 2545 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2546 - 2547 - [[package]] 2548 - name = "windows_x86_64_gnullvm" 2549 2539 version = "0.48.0" 2550 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2551 2541 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2552 2542 2553 2543 [[package]] 2554 2544 name = "windows_x86_64_msvc" 2555 - version = "0.42.2" 2545 + version = "0.48.0" 2556 2546 source = "registry+https://github.com/rust-lang/crates.io-index" 2557 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2547 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2558 2548 2559 2549 [[package]] 2560 - name = "windows_x86_64_msvc" 2561 - version = "0.48.0" 2550 + name = "winnow" 2551 + version = "0.5.1" 2562 2552 source = "registry+https://github.com/rust-lang/crates.io-index" 2563 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2553 + checksum = "25b5872fa2e10bd067ae946f927e726d7d603eaeb6e02fa6a350e0722d2b8c11" 2554 + dependencies = [ 2555 + "memchr", 2556 + ] 2564 2557 2565 2558 [[package]] 2566 2559 name = "xxhash-rust" ··· 2570 2563 2571 2564 [[package]] 2572 2565 name = "zstd" 2573 - version = "0.12.3+zstd.1.5.2" 2566 + version = "0.12.4" 2574 2567 source = "registry+https://github.com/rust-lang/crates.io-index" 2575 - checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" 2568 + checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" 2576 2569 dependencies = [ 2577 2570 "zstd-safe", 2578 2571 ] 2579 2572 2580 2573 [[package]] 2581 2574 name = "zstd-safe" 2582 - version = "6.0.5+zstd.1.5.4" 2575 + version = "6.0.6" 2583 2576 source = "registry+https://github.com/rust-lang/crates.io-index" 2584 - checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" 2577 + checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" 2585 2578 dependencies = [ 2586 2579 "libc", 2587 2580 "zstd-sys",
+4 -2
pkgs/development/python-modules/polars/default.nix
··· 10 10 }: 11 11 let 12 12 pname = "polars"; 13 - version = "0.18.0"; # Can't update to >0.18.0 until we get rust 1.71 13 + version = "0.18.13"; 14 14 rootSource = fetchFromGitHub { 15 15 owner = "pola-rs"; 16 16 repo = "polars"; 17 17 rev = "refs/tags/py-${version}"; 18 - hash = "sha256-uzo8KPEegaVuzrfKUmsHheQfmm9hVMgkNJMWdfqDrw8="; 18 + hash = "sha256-kV30r2wmswpCUmMRaFsCOeRrlTN5/PU0ogaU2JIHq0E="; 19 19 }; 20 20 in 21 21 buildPythonPackage { ··· 35 35 cargoDeps = rustPlatform.importCargoLock { 36 36 lockFile = ./Cargo.lock; 37 37 outputHashes = { 38 + "arrow2-0.17.3" = "sha256-pM6lNjMCpUzC98IABY+M23lbLj0KMXDefgBMjUPjDlg="; 38 39 "jsonpath_lib-0.3.0" = "sha256-NKszYpDGG8VxfZSMbsTlzcMGFHBOUeFojNw4P2wM3qk="; 40 + "simd-json-0.10.0" = "sha256-0q/GhL7PG5SLgL0EETPqe8kn6dcaqtyL+kLU9LL+iQs="; 39 41 }; 40 42 }; 41 43 cargoRoot = "py-polars";
+8 -6
pkgs/development/python-modules/pyfuse3/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 - , cython 5 + , cython_3 6 6 , pkg-config 7 + , setuptools 7 8 , fuse3 8 9 , trio 9 10 , python ··· 14 15 15 16 buildPythonPackage rec { 16 17 pname = "pyfuse3"; 17 - version = "3.2.3"; 18 + version = "3.3.0"; 18 19 19 - disabled = pythonOlder "3.5"; 20 + disabled = pythonOlder "3.8"; 20 21 21 - format = "setuptools"; 22 + format = "pyproject"; 22 23 23 24 src = fetchFromGitHub { 24 25 owner = "libfuse"; 25 26 repo = "pyfuse3"; 26 27 rev = "refs/tags/${version}"; 27 - hash = "sha256-2YrVapCojcFRaljqNeWPMWz3hEgSutKPy2u8FXp0fME="; 28 + hash = "sha256-GLGuTFdTA16XnXKSBD7ET963a8xH9EG/JfPNu6/3DOg="; 28 29 }; 29 30 30 31 postPatch = '' ··· 33 34 ''; 34 35 35 36 nativeBuildInputs = [ 36 - cython 37 + cython_3 37 38 pkg-config 39 + setuptools 38 40 ]; 39 41 40 42 buildInputs = [ fuse3 ];
+1 -1
pkgs/development/python-modules/pygrok/default.nix
··· 23 23 description = "A python implementation of jordansissel's grok regular expression library"; 24 24 homepage = "https://github.com/garyelephant/pygrok"; 25 25 license = licenses.mit; 26 - platforms = platforms.linux; 26 + platforms = platforms.unix; 27 27 }; 28 28 }
+2 -2
pkgs/development/python-modules/pyinsteon/default.nix
··· 1 1 { lib 2 2 , aiofiles 3 3 , aiohttp 4 - , async_generator 4 + , async-generator 5 5 , buildPythonPackage 6 6 , fetchFromGitHub 7 7 , pypubsub ··· 41 41 ]; 42 42 43 43 nativeCheckInputs = [ 44 - async_generator 44 + async-generator 45 45 pytestCheckHook 46 46 ]; 47 47
+11 -3
pkgs/development/python-modules/pyintesishome/default.nix
··· 2 2 , aiohttp 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "pyintesishome"; 9 - version = "1.8.4"; 10 + version = "1.8.5"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 10 14 11 15 src = fetchFromGitHub { 12 16 owner = "jnimmo"; 13 17 repo = "pyIntesisHome"; 14 18 rev = "refs/tags/${version}"; 15 - hash = "sha256-+pXGB7mQszbBp4KhOYzDKoGFoUHATWLbOU6QwMIpGWU="; 19 + hash = "sha256-QgIvIn8I5EtJSNj1FdOI+DPgG7/y2ToQ62dhk7flieo="; 16 20 }; 17 21 18 22 propagatedBuildInputs = [ ··· 21 25 22 26 # Project has no tests 23 27 doCheck = false; 24 - pythonImportsCheck = [ "pyintesishome" ]; 28 + 29 + pythonImportsCheck = [ 30 + "pyintesishome" 31 + ]; 25 32 26 33 meta = with lib; { 27 34 description = "Python interface for IntesisHome devices"; 28 35 homepage = "https://github.com/jnimmo/pyIntesisHome"; 36 + changelog = "https://github.com/jnimmo/pyIntesisHome/releases/tag/${version}"; 29 37 license = with licenses; [ mit ]; 30 38 maintainers = with maintainers; [ fab ]; 31 39 };
+2 -2
pkgs/development/python-modules/pytest-trio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , trio, async_generator, hypothesis, outcome, pytest }: 2 + , trio, async-generator, hypothesis, outcome, pytest }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "pytest-trio"; ··· 17 17 18 18 propagatedBuildInputs = [ 19 19 trio 20 - async_generator 20 + async-generator 21 21 outcome 22 22 ]; 23 23
+3 -3
pkgs/development/python-modules/python-telegram-bot/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "python-telegram-bot"; 22 - version = "20.2"; 22 + version = "20.4"; 23 23 format = "setuptools"; 24 24 25 - disabled = pythonOlder "3.7"; 25 + disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = pname; 29 29 repo = pname; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-OdjTlVUjlw+5K/kvL1Yx+7c/lIE52udUo6Ux18M9xmE="; 31 + hash = "sha256-owbJJZjBkMjsgfBLRl+rnePrIvQ0sUZs7rP9ie912pw="; 32 32 }; 33 33 34 34 propagatedBuildInputs = [
+58
pkgs/development/python-modules/pyunpack/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , easyprocess 6 + , entrypoint2 7 + , patool 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pyunpack"; 12 + version = "0.3"; 13 + format = "setuptools"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ponty"; 17 + repo = "pyunpack"; 18 + rev = "refs/tags/${version}"; 19 + hash = "sha256-1MAdiX6+u35f6S8a0ZcIIebZE8bbxTy+0TnMohJ7J6s="; 20 + }; 21 + 22 + postPatch = '' 23 + substituteInPlace pyunpack/__init__.py \ 24 + --replace \ 25 + '_exepath("patool")' \ 26 + '"${patool}/bin/.patool-wrapped"' 27 + ''; 28 + 29 + propagatedBuildInputs = [ 30 + easyprocess 31 + entrypoint2 32 + ]; 33 + 34 + nativeCheckInputs = [ pytestCheckHook ]; 35 + 36 + pytestFlagsArray = [ "-x" ]; 37 + 38 + pythonImportsCheck = [ "pyunpack" ]; 39 + 40 + disabledTestPaths = [ 41 + # unfree 42 + "tests/test_rar.py" 43 + 44 + # We get "patool: error: unrecognized arguments: --password 123" 45 + # The currently packaged version of patool does not support this flag. 46 + # https://github.com/wummel/patool/issues/114 47 + # FIXME: Re-enable these once patool is updated 48 + "tests/test_rarpw.py" 49 + "tests/test_zippw.py" 50 + ]; 51 + 52 + meta = with lib; { 53 + description = "Unpack archive files in python"; 54 + homepage = "https://github.com/ponty/pyunpack"; 55 + license = licenses.bsd2; 56 + maintainers = with maintainers; [ pbsds ]; 57 + }; 58 + }
+4 -2
pkgs/development/python-modules/rzpipe/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "rzpipe"; 9 - version = "0.5.1"; 9 + version = "0.6.0"; 10 + format = "setuptools"; 10 11 11 12 disabled = pythonOlder "3.5"; 12 13 13 14 src = fetchPypi { 14 15 inherit pname version; 15 - hash = "sha256-0xbkdgMDiBwSzXmlVmRwHlLBgVmfZgmM8lQ4ALgmaBk="; 16 + hash = "sha256-py4oiNp+WUcOGHn2AdHyIpgV8BsI8A1gtJi2joi1Wxc="; 16 17 }; 17 18 18 19 # No native rz_core library ··· 25 26 meta = with lib; { 26 27 description = "Python interface for rizin"; 27 28 homepage = "https://rizin.re"; 29 + changelog = "https://github.com/rizinorg/rizin/releases/tag/v${version}"; 28 30 license = licenses.mit; 29 31 maintainers = with maintainers; [ fab ]; 30 32 };
+18
pkgs/development/python-modules/snowflake-connector-python/default.nix
··· 18 18 , requests 19 19 , setuptools 20 20 , typing-extensions 21 + , wheel 21 22 }: 22 23 23 24 buildPythonPackage rec { ··· 32 33 hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE="; 33 34 }; 34 35 36 + # snowflake-connector-python requires arrow 10.0.1, which we don't have in 37 + # nixpkgs, so we cannot build the C extensions that use it. thus, patch out 38 + # cython and pyarrow from the build dependencies 39 + # 40 + # keep an eye on following issue for improvements to this situation: 41 + # 42 + # https://github.com/snowflakedb/snowflake-connector-python/issues/1144 43 + # 44 + postPatch = '' 45 + substituteInPlace pyproject.toml \ 46 + --replace '"cython",' "" \ 47 + --replace '"pyarrow>=10.0.1,<10.1.0",' "" 48 + ''; 49 + 35 50 nativeBuildInputs = [ 36 51 pythonRelaxDepsHook 52 + setuptools 53 + wheel 37 54 ]; 55 + 38 56 pythonRelaxDeps = [ 39 57 "pyOpenSSL" 40 58 "charset-normalizer"
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "trimesh"; 12 - version = "3.23.0"; 12 + version = "3.23.1"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-TjnN5gqzhsN2S/Acqio5pH33RW/Zp3acolI+B+sSaRA="; 19 + hash = "sha256-2MQJJaTzpDeuk9BPLbzwWtbLC3jzd7ht2oGrVMCXRoc="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/trio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pythonOlder 2 2 , attrs 3 3 , sortedcontainers 4 - , async_generator 4 + , async-generator 5 5 , exceptiongroup 6 6 , idna 7 7 , outcome ··· 30 30 propagatedBuildInputs = [ 31 31 attrs 32 32 sortedcontainers 33 - async_generator 33 + async-generator 34 34 idna 35 35 outcome 36 36 sniffio
+11
pkgs/development/python-modules/xknx/default.nix
··· 2 2 , async-timeout 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , cryptography 6 7 , ifaddr 7 8 , pytest-asyncio 8 9 , pytestCheckHook 9 10 , pythonOlder 10 11 , setuptools 12 + , wheel 11 13 }: 12 14 13 15 buildPythonPackage rec { ··· 24 26 hash = "sha256-rKvHb0wkWVuZO8M8uIQdOiY1N6DmGSpqUgz4YYbUfSM="; 25 27 }; 26 28 29 + patches = [ 30 + (fetchpatch { 31 + name = "unpin-setuptools.patch"; 32 + url = "https://github.com/XKNX/xknx/commit/c0826aec52ab69b8bd81f600bea154fae16f334e.patch"; 33 + hash = "sha256-EpfgEq4pIx7ahqJZalzo30ruj8NlZYHcKHxFXCGL98w="; 34 + }) 35 + ]; 36 + 27 37 nativeBuildInputs = [ 28 38 setuptools 39 + wheel 29 40 ]; 30 41 31 42 propagatedBuildInputs = [
+11
pkgs/development/python-modules/xknxproject/default.nix
··· 2 2 , buildPythonPackage 3 3 , cryptography 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , pytestCheckHook 6 7 , pythonOlder 7 8 , pyzipper 8 9 , setuptools 10 + , wheel 9 11 }: 10 12 11 13 buildPythonPackage rec { ··· 22 24 hash = "sha256-ZLBvhuLXEOgqS7tRwP/e1Dv1/EMqxqXgpAZtLQGIt/o="; 23 25 }; 24 26 27 + patches = [ 28 + (fetchpatch { 29 + name = "unpin-setuptools.patch"; 30 + url = "https://github.com/XKNX/xknxproject/commit/53fecaf757d682fda00b04c3a2a1f3da86d9705f.patch"; 31 + hash = "sha256-EpfgEq4pIx7ahqJZalzo30ruj8NlZYHcKHxFXCGL98w="; 32 + }) 33 + ]; 34 + 25 35 nativeBuildInputs = [ 26 36 setuptools 37 + wheel 27 38 ]; 28 39 29 40 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.3.359"; 25 + version = "2.3.360"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-9Ai8nsPy5BlyeVoEcZeMr+UlUp7kv7wxS9xn9wrvAJo="; 32 + hash = "sha256-3EyaJiApKm2Kaj1nAfadMyn/qnrx3on2rYQAXc6jG8E="; 33 33 }; 34 34 35 35 patches = [
+3 -3
pkgs/development/tools/buf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "buf"; 13 - version = "1.25.0"; 13 + version = "1.26.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bufbuild"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-koYRJCO9G8McoFNe2P61y+q7T4gZ1MBNAy9jFC63kds="; 19 + hash = "sha256-e00o3G66GCJyA3flqRa+J1yQVBVusBrEOJrL9viKtlM="; 20 20 }; 21 21 22 - vendorHash = "sha256-2UA8rp2ZHTUnYialFXrIlH+RzfZHtdKn0dc+Dfps8ow="; 22 + vendorHash = "sha256-7RVYD0r3nqb0yLmKu9zzpQNiVDVBJGG1BiVb6J+VR9k="; 23 23 24 24 patches = [ 25 25 # Skip a test that requires networking to be available to work.
+2 -2
pkgs/development/tools/build-managers/bmake/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "bmake"; 13 - version = "20230711"; 13 + version = "20230723"; 14 14 15 15 src = fetchurl { 16 16 url = "http://www.crufty.net/ftp/pub/sjg/bmake-${finalAttrs.version}.tar.gz"; 17 - hash = "sha256-CoFULAPxoObCe/UBXY+7xSY04RkIOOx9p2RYR9kzL+8="; 17 + hash = "sha256-xCoNlRuiP3ZlMxMJ+74h7cARNqI8uUFoULQxW+X7WQQ="; 18 18 }; 19 19 20 20 patches = [
+3 -3
pkgs/development/tools/cue/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cue"; 5 - version = "0.5.0"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cue-lang"; 9 9 repo = "cue"; 10 10 rev = "v${version}"; 11 - hash = "sha256-4E50VrekIkVXhzHVNehgm6/DbkofvqlNSgX9oK9SLu4="; 11 + hash = "sha256-1svWb83xbVZIlI9pviCYfQ6Kkp0QRjZwrauL7PPJLts="; 12 12 }; 13 13 14 14 postPatch = '' ··· 16 16 rm -f cmd/cue/cmd/script_test.go 17 17 ''; 18 18 19 - vendorHash = "sha256-0N0bZdimGHu3vkLe+eGKBTm/YeSQOnp+Pxhz3LVniTk="; 19 + vendorHash = "sha256-ku4tPTXdnKau0kqnAAEHDdSF4oAC/6SDkTq8cECOiEk="; 20 20 21 21 excludedPackages = [ "internal/ci/updatetxtar" "internal/cmd/embedpkg" "internal/cmd/qgo" "pkg/gen" ]; 22 22
+3 -3
pkgs/development/tools/darklua/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "darklua"; 8 - version = "0.9.0"; 8 + version = "0.10.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "seaofvoices"; 12 12 repo = "darklua"; 13 13 rev = "v${version}"; 14 - hash = "sha256-ABzhtAbWv2oM4VqxRUWC+xh2fwUw1s2iU1IWb5EEhiE="; 14 + hash = "sha256-lZKf+05+qpQe21tMclYYUB9QBI6lC0vhNtsM4O3Jde4="; 15 15 }; 16 16 17 - cargoHash = "sha256-36YN/7aI69xsnwGz8oQG5RZu8XjQ9vwQtRNMWQ7pT0Q="; 17 + cargoHash = "sha256-NnMjvi1H3VQGtklzXKPnZX1dOq3kCSiW8MnSvymtZ68="; 18 18 19 19 # error: linker `aarch64-linux-gnu-gcc` not found 20 20 postPatch = ''
+2 -2
pkgs/development/tools/jet/default.nix
··· 2 2 3 3 buildGraalvmNativeImage rec { 4 4 pname = "jet"; 5 - version = "0.6.26"; 5 + version = "0.7.27"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; 9 - sha256 = "sha256-zlSIIZ0YV6ussgAylz8QGmKBi8MwIIMzmloIf4bHvHU="; 9 + sha256 = "sha256-250/1DBNCXlU1b4jjLUUOXI+uSbOyPXtBN1JJRpdmFc="; 10 10 }; 11 11 12 12 extraNativeImageBuildArgs = [
+9 -6
pkgs/development/tools/language-servers/zls/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , zigHook 4 + , zig_0_11 5 + , callPackage 5 6 }: 6 7 7 8 stdenv.mkDerivation (finalAttrs: { 8 9 pname = "zls"; 9 - version = "0.10.0"; 10 + version = "0.11.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "zigtools"; 13 14 repo = "zls"; 14 15 rev = finalAttrs.version; 15 16 fetchSubmodules = true; 16 - hash = "sha256-M0GG4KIMcHN+bEprUv6ISZkWNvWN12S9vqSKP+DRU9M="; 17 + hash = "sha256-WrbjJyc4pj7R4qExdzd0DOQ9Tz3TFensAfHdecBA8UI="; 17 18 }; 18 19 19 20 nativeBuildInputs = [ 20 - zigHook 21 + zig_0_11.hook 21 22 ]; 22 23 23 - dontConfigure = true; 24 + postPatch = '' 25 + ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p 26 + ''; 24 27 25 28 meta = { 26 29 description = "Zig LSP implementation + Zig Language Server"; 27 30 changelog = "https://github.com/zigtools/zls/releases/tag/${finalAttrs.version}"; 28 31 homepage = "https://github.com/zigtools/zls"; 29 32 license = lib.licenses.mit; 30 - maintainers = with lib.maintainers; [ fortuneteller2k ]; 33 + maintainers = with lib.maintainers; [ figsoda fortuneteller2k ]; 31 34 platforms = lib.platforms.unix; 32 35 }; 33 36 })
+27
pkgs/development/tools/language-servers/zls/deps.nix
··· 1 + # generated by zon2nix (https://github.com/figsoda/zon2nix) 2 + 3 + { linkFarm, fetchzip }: 4 + 5 + linkFarm "zig-packages" [ 6 + { 7 + name = "1220363c7e27b2d3f39de6ff6e90f9537a0634199860fea237a55ddb1e1717f5d6a5"; 8 + path = fetchzip { 9 + url = "https://gist.github.com/antlilja/8372900fcc09e38d7b0b6bbaddad3904/archive/6c3321e0969ff2463f8335da5601986cf2108690.tar.gz"; 10 + hash = "sha256-m/kr4kmkG2rLkAj5YwvM0HmXTd+chAiQHzYK6ozpWlw="; 11 + }; 12 + } 13 + { 14 + name = "122048992ca58a78318b6eba4f65c692564be5af3b30fbef50cd4abeda981b2e7fa5"; 15 + path = fetchzip { 16 + url = "https://github.com/ziglibs/known-folders/archive/fa75e1bc672952efa0cf06160bbd942b47f6d59b.tar.gz"; 17 + hash = "sha256-U/h4bVarq8CFKbFyNXKl3vBRPubYooLxA1xUz3qMGPE="; 18 + }; 19 + } 20 + { 21 + name = "122089a8247a693cad53beb161bde6c30f71376cd4298798d45b32740c3581405864"; 22 + path = fetchzip { 23 + url = "https://github.com/ziglibs/diffz/archive/90353d401c59e2ca5ed0abe5444c29ad3d7489aa.tar.gz"; 24 + hash = "sha256-3CdYo6WevT0alRwKmbABahjhFKz7V9rdkDUZ43VtDeU="; 25 + }; 26 + } 27 + ]
+10 -2
pkgs/development/tools/misc/kool/default.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 + , testers 5 + , kool 4 6 }: 5 7 6 8 buildGoModule rec { 7 9 pname = "kool"; 8 - version = "2.1.0"; 10 + version = "2.1.1"; 9 11 10 12 src = fetchFromGitHub { 11 13 owner = "kool-dev"; 12 14 repo = "kool"; 13 15 rev = version; 14 - hash = "sha256-dMmokaFPzunpCdkJFVc3422SEKZNIOi8nzRB99Gi5Tg="; 16 + hash = "sha256-Gtw+47EQVPxiW9xjY/cWlE4aJ1aYYhpvsVQzt0EnI8I="; 15 17 }; 16 18 17 19 vendorHash = "sha256-8t+OZB9jrlOVHLURPmtz0ent6COEOVMFfObe2LH1jRM="; ··· 21 23 "-w" 22 24 "-X=kool-dev/kool/commands.version=${version}" 23 25 ]; 26 + 27 + passthru.tests = { 28 + version = testers.testVersion { 29 + package = kool; 30 + }; 31 + }; 24 32 25 33 meta = with lib; { 26 34 description = "From local development to the cloud: development workflow made easy";
+3 -3
pkgs/development/tools/rust/cargo-spellcheck/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cargo-spellcheck"; 10 - version = "0.12.4"; 10 + version = "0.13.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "drahnr"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-h9114HFWIsJn95pJ3QoDokNgAkE6KFjDt5Rt85vT7zw="; 16 + sha256 = "sha256-XqT2l839fRDNj6zJB0vlVMmoRB2Lz61cN297PNIvFX8="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-hYCDpSKi7HlqwdnMnfnKw46VpO+bhsV11kIu/4yMaBw="; 19 + cargoSha256 = "sha256-PzPQnexT1oeZ0FkTLyZiQJlMx+WDoSHD+J1JzoME6sA="; 20 20 21 21 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 22 22
+2 -2
pkgs/development/tools/trunk-io/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "trunk-io"; 5 - version = "1.2.6"; 5 + version = "1.2.7"; 6 6 7 7 src = fetchurl { 8 8 url = "https://trunk.io/releases/launcher/${version}/trunk"; 9 - hash = "sha256-CLgbN5m8tFBBGUQLfJuJOEptzCYLI5GJu4fUqrKkO6k="; 9 + hash = "sha256-i2m+6Y6gvkHYwzESJv0DkLcHkXqz+g4e43TV6u1UTj8="; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -2
pkgs/development/web/nodejs/v16.nix
··· 13 13 # If you do upgrade here, please update in pkgs/top-level/release.nix 14 14 # the permitted insecure version to ensure it gets cached for our users 15 15 # and backport this to stable release (23.05). 16 - version = "16.20.1"; 17 - sha256 = "sha256-g+AzgeJx8aVhkYjnrqnYXZt+EvW+KijOt41ySe0it/E="; 16 + version = "16.20.2"; 17 + sha256 = "sha256-V28aA8RV5JGo0TK1h+trO4RlH8iXS7NjhDPdRNIsj0k="; 18 18 patches = [ 19 19 ./disable-darwin-v8-system-instrumentation.patch 20 20 ./bypass-darwin-xcrun-node16.patch
+2 -2
pkgs/development/web/nodejs/v18.nix
··· 9 9 in 10 10 buildNodejs { 11 11 inherit enableNpm; 12 - version = "18.17.0"; 13 - sha256 = "01h4fzr0dpnhmd96hxhbb8dhyylp68j5ramrrh9w4fgaynnzmh40"; 12 + version = "18.17.1"; 13 + sha256 = "sha256-8hXPA9DwDwesC2dMaBn4BMFULhbxUtoEmAAirsz15lo="; 14 14 patches = [ 15 15 ./disable-darwin-v8-system-instrumentation.patch 16 16 ./bypass-darwin-xcrun-node16.patch
+2 -2
pkgs/development/web/nodejs/v20.nix
··· 9 9 in 10 10 buildNodejs { 11 11 inherit enableNpm; 12 - version = "20.5.0"; 13 - sha256 = "sha256-yzJ1aVje8cBOBpp5txtSymHtFZDBfyz6HuOvZB9y4Fg="; 12 + version = "20.5.1"; 13 + sha256 = "sha256-Q5xxqi84woYWV7+lOOmRkaVxJYBmy/1FSFhgScgTQZA="; 14 14 patches = [ 15 15 ./revert-arm64-pointer-auth.patch 16 16 ./disable-darwin-v8-system-instrumentation-node19.patch
+2 -2
pkgs/games/blackshades/default.nix
··· 6 6 , libGLU 7 7 , libsndfile 8 8 , openal 9 - , zigHook 9 + , zig_0_9 10 10 }: 11 11 12 12 stdenv.mkDerivation (finalAttrs: { ··· 21 21 hash = "sha256-Hg+VcWI28GzY/CPm1lUftP0RGztOnzizrKJQVTmeJ9I="; 22 22 }; 23 23 24 - nativeBuildInputs = [ zigHook ]; 24 + nativeBuildInputs = [ zig_0_9.hook ]; 25 25 26 26 buildInputs = [ 27 27 glfw
+5 -4
pkgs/os-specific/linux/consoletools/default.nix
··· 1 - { lib, stdenv, fetchurl, SDL }: 1 + { lib, stdenv, fetchurl, pkg-config, SDL, SDL2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "linuxconsoletools"; 5 - version = "1.6.1"; 5 + version = "1.8.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/linuxconsole/${pname}-${version}.tar.bz2"; 9 - sha256 = "0d2r3j916fl2y7pk1y82b9fvbr10dgs1gw7rqwzfpispdidb1mp9"; 9 + sha256 = "sha256-TaKXRceCt9sY9fN8Sed78WMSHdN2Hi/HY2+gy/NcJFY="; 10 10 }; 11 11 12 - buildInputs = [ SDL ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 + buildInputs = [ SDL SDL2 ]; 13 14 14 15 makeFlags = [ "DESTDIR=$(out)"]; 15 16
+3 -3
pkgs/servers/http/go-camo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-camo"; 5 - version = "2.4.3"; 5 + version = "2.4.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cactus"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-GRctsE+uAvyA0pcz+ym4sz3K80pUHoDipVsjFcdrT2A="; 11 + sha256 = "sha256-27kAVuFJaGKt7q9E2tchAD6kSukO4xkhU+1JTPfT3Qk="; 12 12 }; 13 13 14 - vendorHash = "sha256-C66QxlMBupbHYktyzHapUrl0yk+pvWZN0BLhpjIGVzI="; 14 + vendorHash = "sha256-LVQnQ8Tpkzpc6aUsUgwz2xTttccHynJPsQKvWGiRAIU="; 15 15 16 16 ldflags = [ "-s" "-w" "-X=main.ServerVersion=${version}" ]; 17 17
+2 -1
pkgs/servers/sozu/default.nix
··· 45 45 changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}"; 46 46 license = licenses.agpl3; 47 47 maintainers = with maintainers; [ Br1ght0ne gaelreyrol ]; 48 - platforms = [ "x86_64-linux" ]; 48 + # error[E0432]: unresolved import `std::arch::x86_64` 49 + broken = !stdenv.isx86_64; 49 50 }; 50 51 }
+3 -3
pkgs/tools/audio/linuxwave/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , installShellFiles 5 - , zigHook 5 + , zig_0_10 6 6 }: 7 7 8 8 stdenv.mkDerivation (finalAttrs: { ··· 19 19 20 20 nativeBuildInputs = [ 21 21 installShellFiles 22 - zigHook 22 + zig_0_10.hook 23 23 ]; 24 24 25 25 postInstall = '' ··· 32 32 changelog = "https://github.com/orhun/linuxwave/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 33 33 license = lib.licenses.mit; 34 34 maintainers = with lib.maintainers; [ figsoda ]; 35 - inherit (zigHook.meta) platforms; 35 + inherit (zig_0_10.meta) platforms; 36 36 }; 37 37 })
+2 -2
pkgs/tools/misc/clipbuzz/default.nix
··· 3 3 , fetchFromSourcehut 4 4 , libX11 5 5 , libXfixes 6 - , zigHook 6 + , zig_0_10 7 7 }: 8 8 9 9 stdenv.mkDerivation (finalAttrs: { ··· 17 17 hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI="; 18 18 }; 19 19 20 - nativeBuildInputs = [ zigHook ]; 20 + nativeBuildInputs = [ zig_0_10.hook ]; 21 21 22 22 buildInputs = [ 23 23 libX11
+2 -3
pkgs/tools/misc/findup/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , findup 5 4 , testers 6 - , zigHook 5 + , zig_0_10 7 6 }: 8 7 9 8 stdenv.mkDerivation (finalAttrs: { ··· 17 16 hash = "sha256-Tpyiy5oJQ04lqVEOFshFC0+90VoNILQ+N6Dd7lbuH/Q="; 18 17 }; 19 18 20 - nativeBuildInputs = [ zigHook ]; 19 + nativeBuildInputs = [ zig_0_10.hook ]; 21 20 22 21 passthru.tests.version = testers.testVersion { package = finalAttrs.findup; }; 23 22
+28
pkgs/tools/misc/grizzly/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "grizzly"; 8 + version = "0.2.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "grafana"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-6z/6QZlCm4mRMKAVzLnOokv8ib7Y/7a17ojjMfeoJ4w="; 15 + }; 16 + 17 + vendorHash = "sha256-DDYhdRPcD5hfSW9nRmCWpsrVmIEU1sBoVvFz5Begx8w="; 18 + 19 + subPackages = [ "cmd/grr" ]; 20 + 21 + meta = with lib; { 22 + description = "A utility for managing Jsonnet dashboards against the Grafana API"; 23 + homepage = "https://grafana.github.io/grizzly/"; 24 + license = licenses.asl20; 25 + maintainers = with lib.maintainers; [ nrhtr ]; 26 + platforms = platforms.unix; 27 + }; 28 + }
+3 -3
pkgs/tools/misc/infracost/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "infracost"; 5 - version = "0.10.27"; 5 + version = "0.10.28"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "infracost"; 9 9 rev = "v${version}"; 10 10 repo = "infracost"; 11 - sha256 = "sha256-oxN1Ylrny/f72duLQQSt+Rz1h5s0BC3eUNXqh1sEL8Y="; 11 + sha256 = "sha256-Gh/3uPkFEW6HBF4vbmZ00qaWD3FGTs7GUHRlfP3G5fY="; 12 12 }; 13 - vendorHash = "sha256-CGweNNOqgOiyyvVF20paO4LtvFiImQhu/kuLbXcYwwA="; 13 + vendorHash = "sha256-mT214puF9gdrw0mfMPQQtZBdErW6MEJBIilKVo2ym30="; 14 14 15 15 ldflags = [ "-s" "-w" "-X github.com/infracost/infracost/internal/version.Version=v${version}" ]; 16 16
+3 -3
pkgs/tools/misc/ncdu/default.nix
··· 2 2 , stdenv 3 3 , fetchurl 4 4 , ncurses 5 - , zigHook 5 + , zig_0_10 6 6 }: 7 7 8 8 stdenv.mkDerivation (finalAttrs: { ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ 18 - zigHook 18 + zig_0_10.hook 19 19 ]; 20 20 21 21 buildInputs = [ ··· 28 28 changelog = "https://dev.yorhel.nl/ncdu/changes2"; 29 29 license = lib.licenses.mit; 30 30 maintainers = with lib.maintainers; [ pSub rodrgz ]; 31 - inherit (zigHook.meta) platforms; 31 + inherit (zig_0_10.meta) platforms; 32 32 }; 33 33 })
+2 -2
pkgs/tools/misc/poop/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , fetchpatch 5 - , zigHook 5 + , zig_0_11 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { ··· 33 33 ]; 34 34 35 35 nativeBuildInputs = [ 36 - zigHook 36 + zig_0_11.hook 37 37 ]; 38 38 39 39 meta = with lib; {
+2 -3
pkgs/tools/misc/zf/default.nix
··· 3 3 , fetchFromGitHub 4 4 , installShellFiles 5 5 , testers 6 - , zf 7 - , zigHook 6 + , zig_0_10 8 7 }: 9 8 10 9 stdenv.mkDerivation (finalAttrs: { ··· 21 20 22 21 nativeBuildInputs = [ 23 22 installShellFiles 24 - zigHook 23 + zig_0_10.hook 25 24 ]; 26 25 27 26 doCheck = false; # it's failing somehow
+30
pkgs/tools/misc/zitadel-tools/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "zitadel-tools"; 8 + version = "0.4.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "zitadel"; 12 + repo = "zitadel-tools"; 13 + rev = "v${version}"; 14 + hash = "sha256-yKSpWvv/xW7ID0KhPIsrZOEWuuhEqpJuiswqO71ooEw="; 15 + }; 16 + 17 + vendorHash = "sha256-ZS8m3zjLWvX3kFty2jpObw+rfyozJ3yDfZBcFCdD96U="; 18 + 19 + ldflags = [ 20 + "-s" "-w" 21 + "-X main.version=${version}" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Helper tools for zitadel"; 26 + homepage = "https://github.com/zitadel/zitadel-tools"; 27 + license = licenses.asl20; 28 + maintainers = with maintainers; [ janik ]; 29 + }; 30 + }
+5 -2
pkgs/tools/networking/chrony/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config 2 2 , gnutls, libedit, nspr, nss, readline, texinfo 3 3 , libcap, libseccomp, pps-tools 4 + , nixosTests 4 5 }: 5 6 6 7 stdenv.mkDerivation rec { 7 8 pname = "chrony"; 8 - version = "4.3"; 9 + version = "4.4"; 9 10 10 11 src = fetchurl { 11 12 url = "https://download.tuxfamily.org/chrony/${pname}-${version}.tar.gz"; 12 - hash = "sha256-nQ2oiahl8ImlohYQ/7ZxPjyUOM4wOmO0nC+26v9biAQ="; 13 + hash = "sha256-6vsH5tr5KxQiAPR4hW3+1u/J6i0Ubu3tXtywm5MScIg="; 13 14 }; 14 15 15 16 outputs = [ "out" "man" ]; ··· 35 36 ''; 36 37 37 38 hardeningEnable = [ "pie" ]; 39 + 40 + passthru.tests = { inherit (nixosTests) chrony chrony-ptp; }; 38 41 39 42 meta = with lib; { 40 43 description = "Sets your computer's clock from time servers on the Net";
+3 -3
pkgs/tools/security/gopass/default.nix
··· 13 13 14 14 buildGoModule rec { 15 15 pname = "gopass"; 16 - version = "1.15.6"; 16 + version = "1.15.7"; 17 17 18 18 nativeBuildInputs = [ installShellFiles makeWrapper ]; 19 19 ··· 21 21 owner = "gopasspw"; 22 22 repo = "gopass"; 23 23 rev = "v${version}"; 24 - hash = "sha256-qhnkU2LuwUWP3Fi/XekFJp3WujeRxF/UHVBiVTfbxJ4="; 24 + hash = "sha256-Q3EX5giteIsH5+fXb7n2qpd9kBjaZZ/A5VuCljc72C8="; 25 25 }; 26 26 27 - vendorHash = "sha256-FZFN+xy23osgFs7Cm3S+LwKaE9Y94qcDVgv+CxA8J68="; 27 + vendorHash = "sha256-crnr5qXlYrhNT3nLlA7U13CaYAmAqcV+MBs/hee9ixU="; 28 28 29 29 subPackages = [ "." ]; 30 30
+4 -3
pkgs/tools/security/gopass/git-credential.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "git-credential-gopass"; 10 - version = "1.15.5"; 10 + version = "1.15.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gopasspw"; 14 14 repo = "git-credential-gopass"; 15 15 rev = "v${version}"; 16 - hash = "sha256-jjW+mqGklnQsX+nznEeehrIMoJ3MX1H5aF7LAePY2g0="; 16 + hash = "sha256-O8lqrvaFfcFHevZpRf+VbIQCBQUuc+B34OmQ3/VIOzI="; 17 17 }; 18 18 19 - vendorHash = "sha256-BXzXpG1Dy25IBf8EzgzOnFcbEvQGVhO8jgR/t6IKgPw="; 19 + vendorHash = "sha256-gb9AZBh5oUAiuCXbsvkmYxcHRNd9KLYq35nMd4iabKw="; 20 20 21 21 subPackages = [ "." ]; 22 22 ··· 34 34 meta = with lib; { 35 35 description = "Manage git credentials using gopass"; 36 36 homepage = "https://github.com/gopasspw/git-credential-gopass"; 37 + changelog = "https://github.com/gopasspw/git-credential-gopass/blob/v${version}/CHANGELOG.md"; 37 38 license = licenses.mit; 38 39 maintainers = with maintainers; [ benneti ]; 39 40 };
+5 -4
pkgs/tools/security/gopass/hibp.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gopass-hibp"; 10 - version = "1.15.5"; 10 + version = "1.15.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gopasspw"; 14 14 repo = "gopass-hibp"; 15 15 rev = "v${version}"; 16 - hash = "sha256-BHMhQqaYM0WfCzvDo7X1GEVNv44zEw2KeA9jhF7RgC4="; 16 + hash = "sha256-525e2LXQ/Ldrqhxqndwpdo2HeS4xRkbPzfwvWeiEayE="; 17 17 }; 18 18 19 - vendorHash = "sha256-Y6BMzSRzbORIbebfP+ptIswyOclM1bs1zPmLpqko//4="; 19 + vendorHash = "sha256-jfqxl21euOtOvt+RltVlSjca2o8VuLtWHgpnW4ve5JM="; 20 20 21 21 subPackages = [ "." ]; 22 22 ··· 33 33 34 34 meta = with lib; { 35 35 description = "Gopass haveibeenpwnd.com integration"; 36 - homepage = "https://www.gopass.pw/"; 36 + homepage = "https://github.com/gopasspw/gopass-hibp"; 37 + changelog = "https://github.com/gopasspw/gopass-hibp/blob/v${version}/CHANGELOG.md"; 37 38 license = licenses.mit; 38 39 maintainers = with maintainers; [ sikmir ]; 39 40 };
+5 -4
pkgs/tools/security/gopass/jsonapi.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "gopass-jsonapi"; 11 - version = "1.15.5"; 11 + version = "1.15.7"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "gopasspw"; 15 15 repo = "gopass-jsonapi"; 16 16 rev = "v${version}"; 17 - hash = "sha256-ZSX5g1agmnPU8Nlmptr3GVrjtPPKbDxouSjz9ulSW44="; 17 + hash = "sha256-lwY5uc6eKqXO8FbvzlrpQY0y5AEcV0RQFvvnE+At6z0="; 18 18 }; 19 19 20 - vendorHash = "sha256-JWOBGTJFzihoznYFzcgjayAzNof6Ob5u3Jfx2a6zwEk="; 20 + vendorHash = "sha256-BKwgP22l4t4jaAHHh+ZD/2nroCtAp/A6DqHt+9HZzKw="; 21 21 22 22 subPackages = [ "." ]; 23 23 ··· 34 34 35 35 meta = with lib; { 36 36 description = "Enables communication with gopass via JSON messages"; 37 - homepage = "https://www.gopass.pw/"; 37 + homepage = "https://github.com/gopasspw/gopass-jsonapi"; 38 + changelog = "https://github.com/gopasspw/gopass-jsonapi/blob/v${version}/CHANGELOG.md"; 38 39 license = licenses.mit; 39 40 maintainers = with maintainers; [ maxhbr ]; 40 41 };
+5 -4
pkgs/tools/security/gopass/summon.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gopass-summon-provider"; 10 - version = "1.15.5"; 10 + version = "1.15.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gopasspw"; 14 14 repo = "gopass-summon-provider"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ZAXdazhRqg9TbWWbftz9og3H7LTHenLlpFPIgZQHd/Q="; 16 + hash = "sha256-JoSNWgwTnFQbnrwGIk6L5SwQeNg0RfLMULceqFF/XnA="; 17 17 }; 18 18 19 - vendorHash = "sha256-BXzXpG1Dy25IBf8EzgzOnFcbEvQGVhO8jgR/t6IKgPw="; 19 + vendorHash = "sha256-gb9AZBh5oUAiuCXbsvkmYxcHRNd9KLYq35nMd4iabKw="; 20 20 21 21 subPackages = [ "." ]; 22 22 ··· 33 33 34 34 meta = with lib; { 35 35 description = "Gopass Summon Provider"; 36 - homepage = "https://www.gopass.pw/"; 36 + homepage = "https://github.com/gopasspw/gopass-summon-provider"; 37 + changelog = "https://github.com/gopasspw/gopass-summon-provider/blob/v${version}/CHANGELOG.md"; 37 38 license = licenses.mit; 38 39 maintainers = with maintainers; [ sikmir ]; 39 40 };
+2 -2
pkgs/tools/security/kube-bench/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kube-bench"; 5 - version = "0.6.15"; 5 + version = "0.6.17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aquasecurity"; 9 9 repo = pname; 10 10 rev = "refs/tags/v${version}"; 11 - hash = "sha256-oZLhHIbDPftm8OVjyBj6/8pcLRX2OvtEU0uwYWIaR/c="; 11 + hash = "sha256-9pXW8PVJhaYi9uKArIJcXbQ6FbCjFA4z9f5M3DLKnng="; 12 12 }; 13 13 14 14 vendorHash = "sha256-dBN6Yi8HtS9LzXr08jhw1hqDwS8a4UqrYaRpM+RzvVM=";
+2 -2
pkgs/tools/text/dt/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , testers 5 - , zigHook 5 + , zig_0_11 6 6 }: 7 7 8 8 stdenv.mkDerivation (finalAttrs: { ··· 16 16 hash = "sha256-C6sG8iqXs64x2AWCxKGFPyoXC1Fn4p2eSLWwJAQ8CSc="; 17 17 }; 18 18 19 - nativeBuildInputs = [ zigHook ]; 19 + nativeBuildInputs = [ zig_0_11.hook ]; 20 20 21 21 passthru.tests.version = testers.testVersion { package = finalAttrs.dt; }; 22 22
+46
pkgs/tools/video/vrrtest/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , makeWrapper 5 + , zip 6 + , love 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "vrrtest"; 11 + version = "2.1.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Nixola"; 15 + repo = "VRRTest"; 16 + rev = "v${finalAttrs.version}"; 17 + hash = "sha256-esyD+BpdnB8miUrIjV6P8Lho1xztmhLDnKxdQKW8GXc="; 18 + }; 19 + 20 + nativeBuildInputs = [ makeWrapper ]; 21 + 22 + buildInputs = [ zip ]; 23 + 24 + buildPhase = '' 25 + runHook preBuild 26 + zip -9 -r vrrtest.love . 27 + runHook postBuild 28 + ''; 29 + 30 + installPhase = '' 31 + runHook preInstall 32 + install -Dm444 -t $out/share/ vrrtest.love 33 + makeWrapper ${love}/bin/love $out/bin/vrrtest \ 34 + --add-flags $out/share/vrrtest.love 35 + runHook postInstall 36 + ''; 37 + 38 + meta = with lib; { 39 + description = "Tool testing variable refresh rates"; 40 + homepage = "https://github.com/Nixola/VRRTest"; 41 + license = licenses.zlib; 42 + mainProgram = "vrrtest"; 43 + maintainers = with maintainers; [ justinlime ]; 44 + inherit (love.meta) platforms; 45 + }; 46 + })
+17 -46
pkgs/top-level/all-packages.nix
··· 509 509 510 510 colorpicker = callPackage ../tools/misc/colorpicker { }; 511 511 512 - colorstorm = callPackage ../applications/misc/colorstorm { 513 - zigHook = zigHook.override { 514 - zig = buildPackages.zig_0_9; 515 - }; 516 - }; 512 + colorstorm = callPackage ../applications/misc/colorstorm { }; 517 513 518 514 comedilib = callPackage ../development/libraries/comedilib { }; 519 515 ··· 595 591 596 592 dsq = callPackage ../tools/misc/dsq { }; 597 593 598 - dt = callPackage ../tools/text/dt { 599 - zigHook = zigHook.override { 600 - zig = buildPackages.zig_0_11; 601 - }; 602 - }; 594 + dt = callPackage ../tools/text/dt { }; 603 595 604 596 dtv-scan-tables = callPackage ../data/misc/dtv-scan-tables { }; 605 597 ··· 1777 1769 goose = callPackage ../tools/misc/goose { }; 1778 1770 1779 1771 gp-saml-gui = python3Packages.callPackage ../tools/networking/gp-saml-gui { }; 1772 + 1773 + grizzly = callPackage ../tools/misc/grizzly { }; 1780 1774 1781 1775 guestfs-tools = callPackage ../tools/virtualization/guestfs-tools { }; 1782 1776 ··· 1992 1986 inherit (darwin.apple_sdk.frameworks) Security; 1993 1987 }; 1994 1988 1989 + vrrtest = callPackage ../tools/video/vrrtest { }; 1990 + 1995 1991 winbox = callPackage ../tools/admin/winbox { 1996 1992 wine = wineWowPackages.staging; 1997 1993 }; ··· 3016 3012 3017 3013 pikchr = callPackage ../tools/graphics/pikchr { }; 3018 3014 3019 - poop = callPackage ../tools/misc/poop { 3020 - zigHook = zigHook.override { 3021 - zig = buildPackages.zig_0_11; 3022 - }; 3023 - }; 3015 + poop = callPackage ../tools/misc/poop { }; 3024 3016 3025 3017 popl = callPackage ../development/libraries/popl { }; 3026 3018 ··· 6151 6143 6152 6144 river = callPackage ../applications/window-managers/river { }; 6153 6145 6154 - rivercarro = callPackage ../applications/misc/rivercarro { 6155 - zigHook = zigHook.override { 6156 - zig = buildPackages.zig_0_9; 6157 - }; 6158 - }; 6146 + rivercarro = callPackage ../applications/misc/rivercarro { }; 6159 6147 6160 6148 river-luatile = callPackage ../applications/misc/river-luatile{ }; 6161 6149 ··· 18336 18324 18337 18325 vscode-langservers-extracted = callPackage ../development/tools/language-servers/vscode-langservers-extracted { }; 18338 18326 18339 - zls = callPackage ../development/tools/language-servers/zls { 18340 - zigHook = zigHook.override { 18341 - zig = buildPackages.zig_0_10; 18342 - }; 18343 - }; 18327 + zls = callPackage ../development/tools/language-servers/zls { }; 18344 18328 18345 18329 ansible-later = callPackage ../tools/admin/ansible/later.nix { }; 18346 18330 ··· 25560 25544 zig_0_11 = darwin.apple_sdk_11_0.callPackage ../development/compilers/zig/0.11.nix { 25561 25545 llvmPackages = llvmPackages_16; 25562 25546 }; 25563 - zig = zig_0_10; 25564 - 25565 - zigHook = callPackage ../development/compilers/zig/hook.nix { }; 25547 + zig = zig_0_11; 25566 25548 25567 25549 zimlib = callPackage ../development/libraries/zimlib { }; 25568 25550 ··· 25571 25553 zita-alsa-pcmi = callPackage ../development/libraries/audio/zita-alsa-pcmi { }; 25572 25554 25573 25555 zita-resampler = callPackage ../development/libraries/audio/zita-resampler { }; 25556 + 25557 + zitadel-tools = callPackage ../tools/misc/zitadel-tools { }; 25574 25558 25575 25559 zix = callPackage ../development/libraries/audio/zix { }; 25576 25560 ··· 30199 30183 inherit (darwin.apple_sdk.frameworks) Security; 30200 30184 }; 30201 30185 30186 + anytone-emu = callPackage ../applications/radio/anytone-emu { }; 30187 + 30202 30188 anytype = callPackage ../applications/misc/anytype { }; 30203 30189 30204 30190 ao = libfive; ··· 32462 32448 32463 32449 waycorner = callPackage ../applications/misc/waycorner { }; 32464 32450 32465 - waylock = callPackage ../applications/misc/waylock { 32466 - zigHook = zigHook.override { 32467 - zig = buildPackages.zig_0_10; 32468 - }; 32469 - }; 32451 + waylock = callPackage ../applications/misc/waylock { }; 32470 32452 32471 32453 wayshot = callPackage ../tools/misc/wayshot { }; 32472 32454 ··· 33446 33428 33447 33429 mepo = callPackage ../applications/misc/mepo { 33448 33430 inherit (gnome) zenity; 33449 - zigHook = zigHook.override { 33450 - zig = buildPackages.zig_0_10; 33451 - }; 33452 33431 }; 33453 33432 33454 33433 meshcentral = callPackage ../tools/admin/meshcentral { }; ··· 34117 34096 34118 34097 netcoredbg = callPackage ../development/tools/misc/netcoredbg { }; 34119 34098 34120 - ncdu = callPackage ../tools/misc/ncdu { 34121 - zigHook = zigHook.override { 34122 - zig = buildPackages.zig_0_10; 34123 - }; 34124 - }; 34099 + ncdu = callPackage ../tools/misc/ncdu { }; 34125 34100 34126 34101 ncdu_1 = callPackage ../tools/misc/ncdu/1.nix { }; 34127 34102 ··· 37283 37258 inherit (perlPackages) PathTiny; 37284 37259 }; 37285 37260 37286 - blackshades = callPackage ../games/blackshades { 37287 - zigHook = zigHook.override { 37288 - zig = buildPackages.zig_0_9; 37289 - }; 37290 - }; 37261 + blackshades = callPackage ../games/blackshades { }; 37291 37262 37292 37263 blobby = callPackage ../games/blobby { }; 37293 37264
+1
pkgs/top-level/python-aliases.nix
··· 45 45 apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05 46 46 argon2_cffi = argon2-cffi; # added 2022-05-09 47 47 APScheduler = apscheduler; # added 2023-02-19 48 + async_generator = async-generator; # added 2023-08-08 48 49 async_stagger = async-stagger; # added 2023-08-08 49 50 asyncio-nats-client = nats-py; # added 2022-02-08 50 51 awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
+6 -2
pkgs/top-level/python-packages.nix
··· 736 736 737 737 asyauth = callPackage ../development/python-modules/asyauth { }; 738 738 739 - async_generator = callPackage ../development/python-modules/async_generator { }; 740 - 741 739 async-dns = callPackage ../development/python-modules/async-dns { }; 740 + 741 + async-generator = callPackage ../development/python-modules/async-generator { }; 742 742 743 743 async-interrupt = callPackage ../development/python-modules/async-interrupt { }; 744 744 ··· 4443 4443 gpapi = callPackage ../development/python-modules/gpapi { }; 4444 4444 4445 4445 gpaw = callPackage ../development/python-modules/gpaw { }; 4446 + 4447 + gpib-ctypes = callPackage ../development/python-modules/gpib-ctypes { }; 4446 4448 4447 4449 gpiozero = callPackage ../development/python-modules/gpiozero { }; 4448 4450 ··· 8218 8220 pytomorrowio = callPackage ../development/python-modules/pytomorrowio { }; 8219 8221 8220 8222 pyuca = callPackage ../development/python-modules/pyuca { }; 8223 + 8224 + pyunpack = callPackage ../development/python-modules/pyunpack { }; 8221 8225 8222 8226 pyutil = callPackage ../development/python-modules/pyutil { }; 8223 8227
+1 -1
pkgs/top-level/release.nix
··· 25 25 # and it will be too much painful for our users to recompile them 26 26 # for no real reason. 27 27 # Remove them for 23.11. 28 - "nodejs-16.20.1" 28 + "nodejs-16.20.2" 29 29 "openssl-1.1.1v" 30 30 ]; 31 31 }; }