Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
62370ea0 879976f6

+1722 -854
-6
nixos/modules/config/system-path.nix
··· 89 89 for a running system, entries can be removed for a more 90 90 minimal NixOS installation. 91 91 92 - Note: If `pkgs.nano` is removed from this list, 93 - make sure another editor is installed and the 94 - `EDITOR` environment variable is set to it. 95 - Environment variables can be set using 96 - {option}`environment.variables`. 97 - 98 92 Like with systemPackages, packages are installed to 99 93 {file}`/run/current-system/sw`. They are 100 94 automatically available to all users, and are
+2 -1
nixos/modules/programs/nano.nix
··· 29 29 30 30 syntaxHighlight = lib.mkOption { 31 31 type = lib.types.bool; 32 - default = false; 32 + default = true; 33 33 description = lib.mdDoc "Whether to enable syntax highlight for various languages."; 34 34 }; 35 35 }; ··· 40 40 etc.nanorc.text = (lib.optionalString cfg.syntaxHighlight '' 41 41 # load syntax highlighting files 42 42 include "${cfg.package}/share/nano/*.nanorc" 43 + include "${cfg.package}/share/nano/extra/*.nanorc" 43 44 '') + cfg.nanorc; 44 45 systemPackages = [ cfg.package ]; 45 46 };
+1 -1
nixos/modules/services/monitoring/prometheus/alertmanager.nix
··· 8 8 9 9 checkedConfig = file: 10 10 if cfg.checkConfig then 11 - pkgs.runCommand "checked-config" { buildInputs = [ cfg.package ]; } '' 11 + pkgs.runCommand "checked-config" { nativeBuildInputs = [ cfg.package ]; } '' 12 12 ln -s ${file} $out 13 13 amtool check-config $out 14 14 '' else file;
+1 -1
nixos/modules/services/monitoring/prometheus/default.nix
··· 31 31 if checkConfigEnabled then 32 32 pkgs.runCommandLocal 33 33 "${name}-${replaceStrings [" "] [""] what}-checked" 34 - { buildInputs = [ cfg.package.cli ]; } '' 34 + { nativeBuildInputs = [ cfg.package.cli ]; } '' 35 35 ln -s ${file} $out 36 36 promtool ${what} $out 37 37 '' else file;
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix
··· 25 25 checkConfig = file: 26 26 pkgs.runCommand "checked-blackbox-exporter.conf" { 27 27 preferLocalBuild = true; 28 - buildInputs = [ pkgs.buildPackages.prometheus-blackbox-exporter ]; 28 + nativeBuildInputs = [ pkgs.buildPackages.prometheus-blackbox-exporter ]; 29 29 } '' 30 30 ln -s ${coerceConfigFile file} $out 31 31 blackbox_exporter --config.check --config.file $out
+1 -1
nixos/modules/tasks/network-interfaces-systemd.nix
··· 89 89 networks."40-${i.name}" = mkMerge [ (genericNetwork id) { 90 90 name = mkDefault i.name; 91 91 DHCP = mkForce (dhcpStr 92 - (if i.useDHCP != null then i.useDHCP else false)); 92 + (if i.useDHCP != null then i.useDHCP else (config.networking.useDHCP && i.ipv4.addresses == [ ]))); 93 93 address = forEach (interfaceIps i) 94 94 (ip: "${ip.address}/${toString ip.prefixLength}"); 95 95 routes = forEach (interfaceRoutes i)
+8 -8
nixos/modules/tasks/network-interfaces.nix
··· 190 190 type = types.nullOr types.bool; 191 191 default = null; 192 192 description = lib.mdDoc '' 193 - Whether this interface should be configured with dhcp. 194 - Null implies the old behavior which depends on whether ip addresses 195 - are specified or not. 193 + Whether this interface should be configured with DHCP. Overrides the 194 + default set by {option}`networking.useDHCP`. If `null` (the default), 195 + DHCP is enabled if the interface has no IPv4 addresses configured 196 + with {option}`networking.interfaces.<name>.ipv4.addresses`, and 197 + disabled otherwise. 196 198 ''; 197 199 }; 198 200 ··· 640 642 } ]; 641 643 }; 642 644 description = lib.mdDoc '' 643 - The configuration for each network interface. If 644 - {option}`networking.useDHCP` is true, then every 645 - interface not listed here will be configured using DHCP. 645 + The configuration for each network interface. 646 646 647 647 Please note that {option}`systemd.network.netdevs` has more features 648 648 and is better maintained. When building new things, it is advised to ··· 1304 1304 default = true; 1305 1305 description = lib.mdDoc '' 1306 1306 Whether to use DHCP to obtain an IP address and other 1307 - configuration for all network interfaces that are not manually 1308 - configured. 1307 + configuration for all network interfaces that do not have any manually 1308 + configured IPv4 addresses. 1309 1309 ''; 1310 1310 }; 1311 1311
+5 -1
nixos/tests/networking.nix
··· 185 185 nodes.router = router; 186 186 nodes.client = { lib, ... }: { 187 187 # Disable test driver default config 188 - networking.interfaces = lib.mkForce {}; 188 + networking.interfaces = lib.mkForce { 189 + # Make sure DHCP defaults correctly even when some unrelated config 190 + # is set on the interface (nothing, in this case). 191 + enp1s0 = {}; 192 + }; 189 193 networking.useNetworkd = networkd; 190 194 virtualisation.interfaces.enp1s0.vlan = 1; 191 195 };
+7 -7
pkgs/applications/audio/pd-plugins/cyclone/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cyclone"; 5 - version = "0.3beta-2"; 5 + version = "unstable-2023-09-12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "porres"; 9 9 repo = "pd-cyclone"; 10 - rev = "cyclone${version}"; 11 - sha256 = "192jrq3bdsv626js1ymq10gwp9wwcszjs63ys6ap9ig8xdkbhr3q"; 10 + rev = "7c470fb03db66057a2198843b635ac3f1abde84d"; 11 + hash = "sha256-ixfnmeoRzV0qEOOIxCV1361t3d59fwxjHWhz9uXQ2ps="; 12 12 }; 13 13 14 14 buildInputs = [ puredata ]; ··· 23 23 rm -rf $out/lib 24 24 ''; 25 25 26 - meta = { 26 + meta = with lib; { 27 27 description = "A library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments"; 28 28 homepage = "http://puredata.info/downloads/cyclone"; 29 - license = lib.licenses.tcltk; 30 - maintainers = [ lib.maintainers.magnetophon ]; 31 - platforms = lib.platforms.linux; 29 + license = licenses.tcltk; 30 + maintainers = with maintainers; [ magnetophon carlthome ]; 31 + platforms = platforms.linux; 32 32 }; 33 33 }
+11 -9
pkgs/applications/audio/pd-plugins/gem/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , autoreconfHook 4 5 , pkg-config ··· 10 11 , libv4l 11 12 , libX11 12 13 , file 13 - }: 14 + }: 14 15 15 16 stdenv.mkDerivation rec { 16 17 pname = "gem-unstable"; 17 - version = "2020-09-22"; 18 + version = "2023-07-28"; 18 19 19 20 src = fetchFromGitHub { 21 + 20 22 owner = "umlaeute"; 21 23 repo = "Gem"; 22 - rev = "2edfde4f0587e72ef325e7f53681936dcc19655b"; 23 - sha256 = "0k5sq128wxi2qhaidspkw310pdgysxs47agv09pkjgvch2n4d5dq"; 24 + rev = "4ec12eef8716822c68f7c02a5a94668d2427037d"; 25 + hash = "sha256-Y/Z7oJdKGd7+aSk8eAN9qu4ss+BOvzaXWpWGjfJqGJ8="; 24 26 }; 25 27 26 28 nativeBuildInputs = [ ··· 39 41 libX11 40 42 ]; 41 43 42 - meta = { 44 + meta = with lib; { 43 45 description = "Graphics Environment for Multimedia"; 44 46 homepage = "http://puredata.info/downloads/gem"; 45 - license = lib.licenses.gpl2Plus; 46 - maintainers = [ lib.maintainers.raboof ]; 47 - platforms = lib.platforms.linux; 47 + license = licenses.gpl2Plus; 48 + maintainers = with maintainers; [ raboof carlthome ]; 49 + platforms = platforms.linux; 48 50 }; 49 51 }
+36 -13
pkgs/applications/audio/puredata/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, gettext, makeWrapper 2 - , alsa-lib, libjack2, tk, fftw 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoreconfHook 5 + , gettext 6 + , makeWrapper 7 + , alsa-lib 8 + , libjack2 9 + , tk 10 + , fftw 11 + , portaudio 3 12 }: 4 13 5 - stdenv.mkDerivation rec { 14 + stdenv.mkDerivation rec { 6 15 pname = "puredata"; 7 - version = "0.50-2"; 16 + version = "0.54-0"; 8 17 9 18 src = fetchurl { 10 19 url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz"; 11 - sha256 = "0dz6r6jy0zfs1xy1xspnrxxks8kddi9c7pxz4vpg2ygwv83ghpg5"; 20 + hash = "sha256-6MFKfYV5CWxuOsm1V4LaYChIRIlx0Qcwah5SbtBFZIU="; 12 21 }; 13 22 14 23 nativeBuildInputs = [ autoreconfHook gettext makeWrapper ]; 15 24 16 - buildInputs = [ alsa-lib libjack2 fftw ]; 25 + buildInputs = [ 26 + fftw 27 + libjack2 28 + ] ++ lib.optionals stdenv.isLinux [ 29 + alsa-lib 30 + ] ++ lib.optionals stdenv.isDarwin [ 31 + portaudio 32 + ]; 17 33 18 34 configureFlags = [ 19 - "--enable-alsa" 20 - "--enable-jack" 35 + "--enable-universal" 21 36 "--enable-fftw" 22 - "--disable-portaudio" 23 - "--disable-oss" 37 + "--enable-jack" 38 + ] ++ lib.optionals stdenv.isLinux [ 39 + "--enable-alsa" 40 + ] ++ lib.optionals stdenv.isDarwin [ 41 + "--enable-portaudio" 42 + "--without-local-portaudio" 43 + "--disable-jack-framework" 44 + "--with-wish=${tk}/bin/wish8.6" 24 45 ]; 25 46 26 47 postInstall = '' 27 - wrapProgram $out/bin/pd --prefix PATH : ${tk}/bin 48 + wrapProgram $out/bin/pd --prefix PATH : ${lib.makeBinPath [ tk ]} 28 49 ''; 29 50 30 51 meta = with lib; { ··· 32 53 audio, video, and graphical processing''; 33 54 homepage = "http://puredata.info"; 34 55 license = licenses.bsd3; 35 - platforms = platforms.linux; 36 - maintainers = [ maintainers.goibhniu ]; 56 + platforms = platforms.linux ++ platforms.darwin; 57 + maintainers = with maintainers; [ goibhniu carlthome ]; 58 + mainProgram = "pd"; 59 + changelog = "https://msp.puredata.info/Pd_documentation/x5.htm#s1"; 37 60 }; 38 61 }
+5 -3
pkgs/applications/audio/ymuse/default.nix
··· 13 13 14 14 buildGoModule rec { 15 15 pname = "ymuse"; 16 - version = "0.21"; 16 + version = "0.22"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "yktoo"; 20 20 repo = "ymuse"; 21 21 rev = "v${version}"; 22 - hash = "sha256-3QgBbK7AK9/uQ6Z7DNIJxa1oXrxvvHDQ/Z2QOf7yfS4="; 22 + hash = "sha256-WbIeqOAhdqxU8EvHEsG7ASwy5xZG1domZKT5ccOggHg="; 23 23 }; 24 24 25 - vendorHash = "sha256-7oYYZWpvWzeHlp6l9bLeHcLITLZPVY5eZdfHSE+ZHW8="; 25 + vendorHash = "sha256-YT4JiieVI6/t4inezE3K2WQBI51W+/MoWr7R/uBzn+8="; 26 26 27 27 nativeBuildInputs = [ 28 28 pkg-config ··· 68 68 description = "GTK client for Music Player Daemon (MPD)"; 69 69 license = licenses.asl20; 70 70 maintainers = with maintainers; [ foo-dogsquared ]; 71 + mainProgram = "ymuse"; 72 + platforms = platforms.unix; 71 73 }; 72 74 }
+5 -4
pkgs/applications/graphics/xournalpp/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "xournalpp"; 28 - version = "1.2.1"; 28 + version = "1.2.2"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "xournalpp"; 32 32 repo = pname; 33 33 rev = "v${version}"; 34 - sha256 = "sha256-dnFNGWPpK/eoW4Ib1E5w/kPy5okPxAja1v4rf0KpVKM="; 34 + sha256 = "sha256-6ND0Y+TzdN2rRI10cusgSK1sYMC55Wn5qFCHP4hsdes="; 35 35 }; 36 36 37 37 nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ]; 38 38 buildInputs = 39 - [ 39 + lib.optionals stdenv.isLinux [ 40 40 alsa-lib 41 + ] ++ [ 41 42 glib 42 43 gsettings-desktop-schemas 43 44 gtk3 ··· 63 64 changelog = "https://github.com/xournalpp/xournalpp/blob/v${version}/CHANGELOG.md"; 64 65 license = licenses.gpl2Plus; 65 66 maintainers = with maintainers; [ andrew-d sikmir ]; 66 - platforms = platforms.linux; 67 + platforms = platforms.unix; 67 68 }; 68 69 }
+2 -1
pkgs/applications/kde/dolphin.nix
··· 5 5 kcompletion, kconfig, kcoreaddons, kdbusaddons, 6 6 kfilemetadata, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications, 7 7 kparts, ktexteditor, kwindowsystem, phonon, solid, 8 - kuserfeedback, wayland, qtwayland, qtx11extras 8 + kuserfeedback, wayland, qtwayland, qtx11extras, qtimageformats 9 9 }: 10 10 11 11 mkDerivation { ··· 26 26 kuserfeedback 27 27 wayland qtwayland 28 28 qtx11extras 29 + qtimageformats 29 30 ]; 30 31 outputs = [ "out" "dev" ]; 31 32 }
+2 -2
pkgs/applications/kde/kio-extras.nix
··· 3 3 exiv2, kactivities, kactivities-stats, karchive, kbookmarks, kconfig, kconfigwidgets, 4 4 kcoreaddons, kdbusaddons, kdsoap, kguiaddons, kdnssd, kiconthemes, ki18n, kio, 5 5 khtml, kpty, syntax-highlighting, libmtp, libssh, openexr, libtirpc, 6 - ilmbase, phonon, qtsvg, samba, solid, gperf, taglib 6 + ilmbase, phonon, qtsvg, samba, solid, gperf, taglib, libX11, libXcursor 7 7 }: 8 8 9 9 mkDerivation { ··· 17 17 exiv2 kactivities kactivities-stats karchive kbookmarks kconfig kconfigwidgets kcoreaddons 18 18 kdbusaddons kdsoap kguiaddons kdnssd kiconthemes ki18n kio khtml 19 19 kpty syntax-highlighting libmtp libssh openexr libtirpc 20 - phonon qtsvg samba solid gperf taglib 20 + phonon qtsvg samba solid gperf taglib libX11 libXcursor 21 21 ]; 22 22 23 23 # org.kde.kmtpd5 DBUS service launches kiod5 binary from kio derivation, not from kio-extras
+2 -2
pkgs/applications/misc/camunda-modeler/default.nix
··· 9 9 10 10 stdenvNoCC.mkDerivation rec { 11 11 pname = "camunda-modeler"; 12 - version = "5.15.1"; 12 + version = "5.16.0"; 13 13 14 14 src = fetchurl { 15 15 url = "https://github.com/camunda/camunda-modeler/releases/download/v${version}/camunda-modeler-${version}-linux-x64.tar.gz"; 16 - hash = "sha256-q9wzfNyMzlyGTjaFOA7TZt+F/jC6EnPb/i4Q9eRxS3E="; 16 + hash = "sha256-Y+v/r5bhtgXBjRQic0s5FA+KMWx5R7DOK+qZ9Izdnb0="; 17 17 }; 18 18 sourceRoot = "camunda-modeler-${version}-linux-x64"; 19 19
+42 -325
pkgs/applications/misc/mission-center/Cargo.lock
··· 155 155 version = "1.13.1" 156 156 source = "registry+https://github.com/rust-lang/crates.io-index" 157 157 checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 158 - dependencies = [ 159 - "bytemuck_derive", 160 - ] 161 - 162 - [[package]] 163 - name = "bytemuck_derive" 164 - version = "1.4.1" 165 - source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" 167 - dependencies = [ 168 - "proc-macro2", 169 - "quote", 170 - "syn 2.0.23", 171 - ] 172 158 173 159 [[package]] 174 160 name = "byteorder" ··· 185 171 "bitflags 2.3.3", 186 172 "cairo-sys-rs", 187 173 "glib", 188 - "libc 0.2.147", 174 + "libc", 189 175 "once_cell", 190 176 "thiserror", 191 177 ] ··· 197 183 checksum = "bd4d115132e01c0165e3bf5f56aedee8980b0b96ede4eb000b693c05a8adb8ff" 198 184 dependencies = [ 199 185 "glib-sys", 200 - "libc 0.2.147", 186 + "libc", 201 187 "system-deps", 202 188 ] 203 189 ··· 278 264 source = "registry+https://github.com/rust-lang/crates.io-index" 279 265 checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 280 266 dependencies = [ 281 - "libc 0.2.147", 267 + "libc", 282 268 ] 283 269 284 270 [[package]] ··· 330 316 "autocfg", 331 317 "cfg-if 1.0.0", 332 318 "crossbeam-utils 0.8.16", 333 - "memoffset 0.9.0", 319 + "memoffset", 334 320 "scopeguard", 335 321 ] 336 322 ··· 391 377 ] 392 378 393 379 [[package]] 394 - name = "dlib" 395 - version = "0.5.2" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 398 - dependencies = [ 399 - "libloading", 400 - ] 401 - 402 - [[package]] 403 380 name = "dlv-list" 404 381 version = "0.5.0" 405 382 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 409 386 ] 410 387 411 388 [[package]] 412 - name = "downcast-rs" 413 - version = "1.2.0" 414 - source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 416 - 417 - [[package]] 418 - name = "drm" 419 - version = "0.9.0" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "edf9159ef4bcecd0c5e4cbeb573b8d0037493403d542780dba5d840bbf9df56f" 422 - dependencies = [ 423 - "bitflags 1.3.2", 424 - "bytemuck", 425 - "drm-ffi", 426 - "drm-fourcc", 427 - "nix", 428 - ] 429 - 430 - [[package]] 431 - name = "drm-ffi" 432 - version = "0.5.0" 433 - source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "1352481b7b90e27a8a1bf8ef6b33cf18b98dba7c410e75c24bb3eef2f0d8d525" 435 - dependencies = [ 436 - "drm-sys", 437 - "nix", 438 - ] 439 - 440 - [[package]] 441 - name = "drm-fourcc" 442 - version = "2.2.0" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 445 - 446 - [[package]] 447 - name = "drm-sys" 448 - version = "0.4.0" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "1369f1679d6b706d234c4c1e0613c415c2c74b598a09ad28080ba2474b72e42d" 451 - dependencies = [ 452 - "libc 0.2.147", 453 - ] 454 - 455 - [[package]] 456 - name = "egl" 457 - version = "0.2.7" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "a373bc9844200b1ff15bd1b245931d1c20d09d06e4ec09f361171f29a4b0752d" 460 - dependencies = [ 461 - "khronos", 462 - "libc 0.2.147", 463 - ] 464 - 465 - [[package]] 466 389 name = "either" 467 390 version = "1.8.1" 468 391 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 481 404 checksum = "9c0007216af1525058024bc6dc15bbd2ffe8af877f0fbf754fbdb78c59d634e8" 482 405 dependencies = [ 483 406 "cc", 484 - "libc 0.2.147", 407 + "libc", 485 408 ] 486 409 487 410 [[package]] ··· 517 440 source = "registry+https://github.com/rust-lang/crates.io-index" 518 441 checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 519 442 dependencies = [ 520 - "memoffset 0.9.0", 443 + "memoffset", 521 444 "rustc_version 0.4.0", 522 445 ] 523 446 ··· 609 532 ] 610 533 611 534 [[package]] 612 - name = "gbm" 613 - version = "0.12.0" 614 - source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "f2ec389cda876966cf824111bf6e533fb934c711d473498279964a990853b3c6" 616 - dependencies = [ 617 - "bitflags 1.3.2", 618 - "drm", 619 - "drm-fourcc", 620 - "gbm-sys", 621 - "libc 0.2.147", 622 - "wayland-backend", 623 - "wayland-server", 624 - ] 625 - 626 - [[package]] 627 - name = "gbm-sys" 628 - version = "0.2.2" 629 - source = "registry+https://github.com/rust-lang/crates.io-index" 630 - checksum = "b63eba9b9b7a231514482deb08759301c9f9f049ac6869403f381834ebfeaf67" 631 - dependencies = [ 632 - "libc 0.2.147", 633 - ] 634 - 635 - [[package]] 636 535 name = "gdk-pixbuf" 637 536 version = "0.18.0" 638 537 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 641 540 "gdk-pixbuf-sys", 642 541 "gio", 643 542 "glib", 644 - "libc 0.2.147", 543 + "libc", 645 544 "once_cell", 646 545 ] 647 546 ··· 654 553 "gio-sys", 655 554 "glib-sys", 656 555 "gobject-sys", 657 - "libc 0.2.147", 556 + "libc", 658 557 "system-deps", 659 558 ] 660 559 ··· 669 568 "gdk4-sys", 670 569 "gio", 671 570 "glib", 672 - "libc 0.2.147", 571 + "libc", 673 572 "pango", 674 573 ] 675 574 ··· 684 583 "gio-sys", 685 584 "glib-sys", 686 585 "gobject-sys", 687 - "libc 0.2.147", 586 + "libc", 688 587 "pango-sys", 689 588 "pkg-config", 690 589 "system-deps", ··· 707 606 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 708 607 dependencies = [ 709 608 "cfg-if 1.0.0", 710 - "libc 0.2.147", 609 + "libc", 711 610 "wasi", 712 611 ] 713 612 ··· 743 642 "futures-util", 744 643 "gio-sys", 745 644 "glib", 746 - "libc 0.2.147", 645 + "libc", 747 646 "once_cell", 748 647 "pin-project-lite", 749 648 "smallvec", ··· 758 657 dependencies = [ 759 658 "glib-sys", 760 659 "gobject-sys", 761 - "libc 0.2.147", 660 + "libc", 762 661 "system-deps", 763 662 "winapi", 764 663 ] ··· 799 698 "glib-macros", 800 699 "glib-sys", 801 700 "gobject-sys", 802 - "libc 0.2.147", 701 + "libc", 803 702 "memchr", 804 703 "once_cell", 805 704 "smallvec", ··· 826 725 source = "registry+https://github.com/rust-lang/crates.io-index" 827 726 checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 828 727 dependencies = [ 829 - "libc 0.2.147", 728 + "libc", 830 729 "system-deps", 831 730 ] 832 731 ··· 837 736 checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 838 737 dependencies = [ 839 738 "glib-sys", 840 - "libc 0.2.147", 739 + "libc", 841 740 "system-deps", 842 741 ] 843 742 ··· 849 748 dependencies = [ 850 749 "glib", 851 750 "graphene-sys", 852 - "libc 0.2.147", 751 + "libc", 853 752 ] 854 753 855 754 [[package]] ··· 859 758 checksum = "cc4144cee8fc8788f2a9b73dc5f1d4e1189d1f95305c4cb7bd9c1af1cfa31f59" 860 759 dependencies = [ 861 760 "glib-sys", 862 - "libc 0.2.147", 761 + "libc", 863 762 "pkg-config", 864 763 "system-deps", 865 764 ] ··· 875 774 "glib", 876 775 "graphene-rs", 877 776 "gsk4-sys", 878 - "libc 0.2.147", 777 + "libc", 879 778 "pango", 880 779 ] 881 780 ··· 890 789 "glib-sys", 891 790 "gobject-sys", 892 791 "graphene-sys", 893 - "libc 0.2.147", 792 + "libc", 894 793 "pango-sys", 895 794 "system-deps", 896 795 ] ··· 912 811 "gsk4", 913 812 "gtk4-macros", 914 813 "gtk4-sys", 915 - "libc 0.2.147", 814 + "libc", 916 815 "pango", 917 816 ] 918 817 ··· 944 843 "gobject-sys", 945 844 "graphene-sys", 946 845 "gsk4-sys", 947 - "libc 0.2.147", 846 + "libc", 948 847 "pango-sys", 949 848 "system-deps", 950 849 ] ··· 1051 950 "futures-core", 1052 951 "futures-io", 1053 952 "intmap", 1054 - "libc 0.2.147", 953 + "libc", 1055 954 "once_cell", 1056 955 "rustc_version 0.4.0", 1057 956 "spinning", ··· 1067 966 checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9" 1068 967 1069 968 [[package]] 1070 - name = "io-lifetimes" 1071 - version = "1.0.11" 1072 - source = "registry+https://github.com/rust-lang/crates.io-index" 1073 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1074 - dependencies = [ 1075 - "hermit-abi", 1076 - "libc 0.2.147", 1077 - "windows-sys", 1078 - ] 1079 - 1080 - [[package]] 1081 969 name = "itoa" 1082 970 version = "1.0.8" 1083 971 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1093 981 ] 1094 982 1095 983 [[package]] 1096 - name = "khronos" 1097 - version = "0.1.2" 1098 - source = "registry+https://github.com/rust-lang/crates.io-index" 1099 - checksum = "c0711aaa80e6ba6eb1fa8978f1f46bfcb38ceb2f3f33f3736efbff39dac89f50" 1100 - dependencies = [ 1101 - "libc 0.1.12", 1102 - ] 1103 - 1104 - [[package]] 1105 984 name = "khronos_api" 1106 985 version = "3.1.0" 1107 986 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1125 1004 "glib", 1126 1005 "gtk4", 1127 1006 "libadwaita-sys", 1128 - "libc 0.2.147", 1007 + "libc", 1129 1008 "pango", 1130 1009 ] 1131 1010 ··· 1140 1019 "glib-sys", 1141 1020 "gobject-sys", 1142 1021 "gtk4-sys", 1143 - "libc 0.2.147", 1022 + "libc", 1144 1023 "pango-sys", 1145 1024 "system-deps", 1146 1025 ] 1147 1026 1148 1027 [[package]] 1149 1028 name = "libc" 1150 - version = "0.1.12" 1151 - source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122" 1153 - 1154 - [[package]] 1155 - name = "libc" 1156 1029 version = "0.2.147" 1157 1030 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 1031 checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1159 1032 1160 1033 [[package]] 1161 - name = "libloading" 1162 - version = "0.8.0" 1163 - source = "registry+https://github.com/rust-lang/crates.io-index" 1164 - checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" 1165 - dependencies = [ 1166 - "cfg-if 1.0.0", 1167 - "windows-sys", 1168 - ] 1169 - 1170 - [[package]] 1171 1034 name = "libsqlite3-sys" 1172 1035 version = "0.26.0" 1173 1036 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1184 1047 source = "registry+https://github.com/rust-lang/crates.io-index" 1185 1048 checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324" 1186 1049 dependencies = [ 1187 - "libc 0.2.147", 1050 + "libc", 1188 1051 "pkg-config", 1189 1052 ] 1190 1053 ··· 1223 1086 source = "registry+https://github.com/rust-lang/crates.io-index" 1224 1087 checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1225 1088 dependencies = [ 1226 - "libc 0.2.147", 1089 + "libc", 1227 1090 ] 1228 1091 1229 1092 [[package]] ··· 1240 1103 1241 1104 [[package]] 1242 1105 name = "memoffset" 1243 - version = "0.7.1" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1246 - dependencies = [ 1247 - "autocfg", 1248 - ] 1249 - 1250 - [[package]] 1251 - name = "memoffset" 1252 1106 version = "0.9.0" 1253 1107 source = "registry+https://github.com/rust-lang/crates.io-index" 1254 1108 checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" ··· 1273 1127 1274 1128 [[package]] 1275 1129 name = "missioncenter" 1276 - version = "0.3.2" 1130 + version = "0.3.3" 1277 1131 dependencies = [ 1278 1132 "arrayvec 0.7.4", 1279 - "drm", 1280 - "egl", 1281 1133 "errno-sys", 1282 - "gbm", 1283 1134 "gettext-rs", 1284 1135 "gl", 1285 1136 "gtk4", 1286 1137 "interprocess", 1287 1138 "lazy_static", 1288 1139 "libadwaita", 1289 - "libc 0.2.147", 1140 + "libc", 1290 1141 "libudev-sys", 1291 1142 "minidl", 1292 1143 "num_cpus", 1293 1144 "pathfinder_canvas", 1294 1145 "pathfinder_color", 1146 + "pathfinder_content", 1295 1147 "pathfinder_geometry", 1296 1148 "pathfinder_gl", 1297 1149 "pathfinder_gpu", ··· 1318 1170 dependencies = [ 1319 1171 "bitflags 1.3.2", 1320 1172 "cfg-if 1.0.0", 1321 - "libc 0.2.147", 1322 - "memoffset 0.7.1", 1173 + "libc", 1323 1174 "static_assertions", 1324 1175 ] 1325 1176 ··· 1380 1231 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1381 1232 dependencies = [ 1382 1233 "hermit-abi", 1383 - "libc 0.2.147", 1234 + "libc", 1384 1235 ] 1385 1236 1386 1237 [[package]] ··· 1436 1287 dependencies = [ 1437 1288 "gio", 1438 1289 "glib", 1439 - "libc 0.2.147", 1290 + "libc", 1440 1291 "once_cell", 1441 1292 "pango-sys", 1442 1293 ] ··· 1449 1300 dependencies = [ 1450 1301 "glib-sys", 1451 1302 "gobject-sys", 1452 - "libc 0.2.147", 1303 + "libc", 1453 1304 "system-deps", 1454 1305 ] 1455 1306 ··· 1686 1537 ] 1687 1538 1688 1539 [[package]] 1689 - name = "quick-xml" 1690 - version = "0.28.2" 1691 - source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 1693 - dependencies = [ 1694 - "memchr", 1695 - ] 1696 - 1697 - [[package]] 1698 1540 name = "quote" 1699 1541 version = "1.0.29" 1700 1542 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1709 1551 source = "registry+https://github.com/rust-lang/crates.io-index" 1710 1552 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1711 1553 dependencies = [ 1712 - "libc 0.2.147", 1554 + "libc", 1713 1555 "rand_chacha", 1714 1556 "rand_core", 1715 1557 ] ··· 1842 1684 checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" 1843 1685 1844 1686 [[package]] 1845 - name = "scoped-tls" 1846 - version = "1.0.1" 1847 - source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1849 - 1850 - [[package]] 1851 1687 name = "scopeguard" 1852 1688 version = "1.1.0" 1853 1689 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1935 1771 checksum = "004d7ece9a3be64f85471d50967710b0a146144225bed5f0abd0514a3bed086f" 1936 1772 dependencies = [ 1937 1773 "cfg-if 1.0.0", 1938 - "libc 0.2.147", 1774 + "libc", 1939 1775 "nix", 1940 1776 "rand", 1941 1777 "win-sys", ··· 2001 1837 dependencies = [ 2002 1838 "cfg-if 1.0.0", 2003 1839 "core-foundation-sys", 2004 - "libc 0.2.147", 1840 + "libc", 2005 1841 "ntapi", 2006 1842 "once_cell", 2007 1843 "winapi", ··· 2216 2052 checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2217 2053 2218 2054 [[package]] 2219 - name = "wayland-backend" 2220 - version = "0.1.2" 2221 - source = "registry+https://github.com/rust-lang/crates.io-index" 2222 - checksum = "41b48e27457e8da3b2260ac60d0a94512f5cba36448679f3747c0865b7893ed8" 2223 - dependencies = [ 2224 - "cc", 2225 - "downcast-rs", 2226 - "io-lifetimes", 2227 - "nix", 2228 - "scoped-tls", 2229 - "smallvec", 2230 - "wayland-sys", 2231 - ] 2232 - 2233 - [[package]] 2234 - name = "wayland-scanner" 2235 - version = "0.30.1" 2236 - source = "registry+https://github.com/rust-lang/crates.io-index" 2237 - checksum = "b9b873b257fbc32ec909c0eb80dea312076a67014e65e245f5eb69a6b8ab330e" 2238 - dependencies = [ 2239 - "proc-macro2", 2240 - "quick-xml", 2241 - "quote", 2242 - ] 2243 - 2244 - [[package]] 2245 - name = "wayland-server" 2246 - version = "0.30.1" 2247 - source = "registry+https://github.com/rust-lang/crates.io-index" 2248 - checksum = "9c43c28096fe1d49fff7d1079404fdd0f669cd1a5b00c615bdfe71bb1884d23a" 2249 - dependencies = [ 2250 - "bitflags 1.3.2", 2251 - "downcast-rs", 2252 - "io-lifetimes", 2253 - "nix", 2254 - "wayland-backend", 2255 - "wayland-scanner", 2256 - ] 2257 - 2258 - [[package]] 2259 - name = "wayland-sys" 2260 - version = "0.30.1" 2261 - source = "registry+https://github.com/rust-lang/crates.io-index" 2262 - checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06" 2263 - dependencies = [ 2264 - "dlib", 2265 - "libc 0.2.147", 2266 - "log", 2267 - "memoffset 0.7.1", 2268 - "pkg-config", 2269 - ] 2270 - 2271 - [[package]] 2272 2055 name = "web-sys" 2273 2056 version = "0.3.64" 2274 2057 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2315 2098 source = "registry+https://github.com/rust-lang/crates.io-index" 2316 2099 checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" 2317 2100 dependencies = [ 2318 - "windows_aarch64_msvc 0.34.0", 2319 - "windows_i686_gnu 0.34.0", 2320 - "windows_i686_msvc 0.34.0", 2321 - "windows_x86_64_gnu 0.34.0", 2322 - "windows_x86_64_msvc 0.34.0", 2101 + "windows_aarch64_msvc", 2102 + "windows_i686_gnu", 2103 + "windows_i686_msvc", 2104 + "windows_x86_64_gnu", 2105 + "windows_x86_64_msvc", 2323 2106 ] 2324 2107 2325 2108 [[package]] 2326 - name = "windows-sys" 2327 - version = "0.48.0" 2328 - source = "registry+https://github.com/rust-lang/crates.io-index" 2329 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2330 - dependencies = [ 2331 - "windows-targets", 2332 - ] 2333 - 2334 - [[package]] 2335 - name = "windows-targets" 2336 - version = "0.48.1" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2339 - dependencies = [ 2340 - "windows_aarch64_gnullvm", 2341 - "windows_aarch64_msvc 0.48.0", 2342 - "windows_i686_gnu 0.48.0", 2343 - "windows_i686_msvc 0.48.0", 2344 - "windows_x86_64_gnu 0.48.0", 2345 - "windows_x86_64_gnullvm", 2346 - "windows_x86_64_msvc 0.48.0", 2347 - ] 2348 - 2349 - [[package]] 2350 - name = "windows_aarch64_gnullvm" 2351 - version = "0.48.0" 2352 - source = "registry+https://github.com/rust-lang/crates.io-index" 2353 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2354 - 2355 - [[package]] 2356 2109 name = "windows_aarch64_msvc" 2357 2110 version = "0.34.0" 2358 2111 source = "registry+https://github.com/rust-lang/crates.io-index" 2359 2112 checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" 2360 2113 2361 2114 [[package]] 2362 - name = "windows_aarch64_msvc" 2363 - version = "0.48.0" 2364 - source = "registry+https://github.com/rust-lang/crates.io-index" 2365 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2366 - 2367 - [[package]] 2368 2115 name = "windows_i686_gnu" 2369 2116 version = "0.34.0" 2370 2117 source = "registry+https://github.com/rust-lang/crates.io-index" 2371 2118 checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" 2372 2119 2373 2120 [[package]] 2374 - name = "windows_i686_gnu" 2375 - version = "0.48.0" 2376 - source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2378 - 2379 - [[package]] 2380 2121 name = "windows_i686_msvc" 2381 2122 version = "0.34.0" 2382 2123 source = "registry+https://github.com/rust-lang/crates.io-index" 2383 2124 checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" 2384 2125 2385 2126 [[package]] 2386 - name = "windows_i686_msvc" 2387 - version = "0.48.0" 2388 - source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2390 - 2391 - [[package]] 2392 2127 name = "windows_x86_64_gnu" 2393 2128 version = "0.34.0" 2394 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 2130 checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" 2396 2131 2397 2132 [[package]] 2398 - name = "windows_x86_64_gnu" 2399 - version = "0.48.0" 2400 - source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2402 - 2403 - [[package]] 2404 - name = "windows_x86_64_gnullvm" 2405 - version = "0.48.0" 2406 - source = "registry+https://github.com/rust-lang/crates.io-index" 2407 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2408 - 2409 - [[package]] 2410 2133 name = "windows_x86_64_msvc" 2411 2134 version = "0.34.0" 2412 2135 source = "registry+https://github.com/rust-lang/crates.io-index" 2413 2136 checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" 2414 - 2415 - [[package]] 2416 - name = "windows_x86_64_msvc" 2417 - version = "0.48.0" 2418 - source = "registry+https://github.com/rust-lang/crates.io-index" 2419 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2420 2137 2421 2138 [[package]] 2422 2139 name = "winnow"
+17 -7
pkgs/applications/misc/mission-center/default.nix
··· 42 42 in 43 43 stdenv.mkDerivation rec { 44 44 pname = "mission-center"; 45 - version = "0.3.2"; 45 + version = "0.3.3"; 46 46 47 47 src = fetchFromGitLab { 48 48 owner = "mission-center-devs"; 49 49 repo = "mission-center"; 50 50 rev = "v${version}"; 51 - hash = "sha256-KuaVivW/i+1Pw6ShpvBYbwPMUHsEJ7FR80is0DBMbXM="; 51 + hash = "sha256-xLyCLKUk21MvswtPUKm41Hr34vTzCMVQNTaAkuhSGLc="; 52 52 }; 53 53 54 54 cargoDeps = symlinkJoin { ··· 102 102 ]; 103 103 104 104 postPatch = '' 105 - echo -e "[wrap-file]\ndirectory = nvtop-src\n[provide]\ndependency_names = nvtop" > ./subprojects/nvtop.wrap 106 - cp -r --no-preserve=mode,ownership "${nvtop}" ./subprojects/nvtop-src 107 - cd ./subprojects/nvtop-src 105 + SRC_GATHERER=$NIX_BUILD_TOP/source/src/sys_info_v2/gatherer 106 + SRC_GATHERER_NVTOP=$SRC_GATHERER/3rdparty/nvtop 107 + 108 + substituteInPlace $SRC_GATHERER_NVTOP/nvtop.json \ 109 + --replace "nvtop-be47f8c560487efc6e6a419d59c69bfbdb819324" "nvtop-src" 110 + 111 + GATHERER_BUILD_DEST=$NIX_BUILD_TOP/source/build/src/sys_info_v2/gatherer/src/debug/build/native 112 + mkdir -p $GATHERER_BUILD_DEST 113 + NVTOP_SRC=$GATHERER_BUILD_DEST/nvtop-src 114 + 115 + cp -r --no-preserve=mode,ownership "${nvtop}" $NVTOP_SRC 116 + pushd $NVTOP_SRC 108 117 mkdir -p include/libdrm 109 - for patchfile in $(ls ../packagefiles/nvtop*.patch); do 118 + for patchfile in $(ls $SRC_GATHERER_NVTOP/patches/nvtop*.patch); do 110 119 patch -p1 < $patchfile 111 120 done 112 - cd ../.. 121 + popd 122 + 113 123 patchShebangs data/hwdb/generate_hwdb.py 114 124 ''; 115 125
+868 -17
pkgs/applications/misc/mission-center/gatherer-Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "adler" 7 + version = "1.0.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 + 11 + [[package]] 6 12 name = "anyhow" 7 13 version = "1.0.72" 8 14 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 53 59 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 54 60 55 61 [[package]] 62 + name = "base64" 63 + version = "0.21.4" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 66 + 67 + [[package]] 56 68 name = "bitflags" 57 69 version = "1.3.2" 58 70 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 65 77 checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 66 78 67 79 [[package]] 80 + name = "block-buffer" 81 + version = "0.10.4" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 84 + dependencies = [ 85 + "generic-array", 86 + ] 87 + 88 + [[package]] 68 89 name = "blocking" 69 90 version = "1.3.1" 70 91 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 74 95 "async-lock", 75 96 "async-task", 76 97 "atomic-waker", 77 - "fastrand", 98 + "fastrand 1.9.0", 78 99 "futures-lite", 79 100 "log", 80 101 ] 81 102 82 103 [[package]] 104 + name = "bumpalo" 105 + version = "3.13.0" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 108 + 109 + [[package]] 110 + name = "bytemuck" 111 + version = "1.14.0" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 114 + dependencies = [ 115 + "bytemuck_derive", 116 + ] 117 + 118 + [[package]] 119 + name = "bytemuck_derive" 120 + version = "1.5.0" 121 + source = "registry+https://github.com/rust-lang/crates.io-index" 122 + checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 123 + dependencies = [ 124 + "proc-macro2", 125 + "quote", 126 + "syn 2.0.27", 127 + ] 128 + 129 + [[package]] 130 + name = "cargo-util" 131 + version = "0.2.5" 132 + source = "registry+https://github.com/rust-lang/crates.io-index" 133 + checksum = "dd54c8b94a0c851d687924460637361c355afafa72d973fe8644499fbdee8fae" 134 + dependencies = [ 135 + "anyhow", 136 + "core-foundation", 137 + "filetime", 138 + "hex", 139 + "jobserver", 140 + "libc 0.2.147", 141 + "log", 142 + "miow", 143 + "same-file", 144 + "sha2", 145 + "shell-escape", 146 + "tempfile", 147 + "walkdir", 148 + "windows-sys 0.48.0", 149 + ] 150 + 151 + [[package]] 152 + name = "cc" 153 + version = "1.0.83" 154 + source = "registry+https://github.com/rust-lang/crates.io-index" 155 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 156 + dependencies = [ 157 + "libc 0.2.147", 158 + ] 159 + 160 + [[package]] 83 161 name = "cfg-if" 84 162 version = "1.0.0" 85 163 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 117 195 ] 118 196 119 197 [[package]] 198 + name = "core-foundation" 199 + version = "0.9.3" 200 + source = "registry+https://github.com/rust-lang/crates.io-index" 201 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 202 + dependencies = [ 203 + "core-foundation-sys", 204 + "libc 0.2.147", 205 + ] 206 + 207 + [[package]] 208 + name = "core-foundation-sys" 209 + version = "0.8.4" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 212 + 213 + [[package]] 214 + name = "cpufeatures" 215 + version = "0.2.9" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 218 + dependencies = [ 219 + "libc 0.2.147", 220 + ] 221 + 222 + [[package]] 223 + name = "crc32fast" 224 + version = "1.3.2" 225 + source = "registry+https://github.com/rust-lang/crates.io-index" 226 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 227 + dependencies = [ 228 + "cfg-if", 229 + ] 230 + 231 + [[package]] 120 232 name = "crossbeam-utils" 121 233 version = "0.8.16" 122 234 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 132 244 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 133 245 134 246 [[package]] 247 + name = "crypto-common" 248 + version = "0.1.6" 249 + source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 251 + dependencies = [ 252 + "generic-array", 253 + "typenum", 254 + ] 255 + 256 + [[package]] 257 + name = "digest" 258 + version = "0.10.7" 259 + source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 261 + dependencies = [ 262 + "block-buffer", 263 + "crypto-common", 264 + ] 265 + 266 + [[package]] 135 267 name = "dlv-list" 136 268 version = "0.5.0" 137 269 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 141 273 ] 142 274 143 275 [[package]] 276 + name = "drm" 277 + version = "0.9.0" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "edf9159ef4bcecd0c5e4cbeb573b8d0037493403d542780dba5d840bbf9df56f" 280 + dependencies = [ 281 + "bitflags 1.3.2", 282 + "bytemuck", 283 + "drm-ffi", 284 + "drm-fourcc", 285 + "nix", 286 + ] 287 + 288 + [[package]] 289 + name = "drm-ffi" 290 + version = "0.5.0" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "1352481b7b90e27a8a1bf8ef6b33cf18b98dba7c410e75c24bb3eef2f0d8d525" 293 + dependencies = [ 294 + "drm-sys", 295 + "nix", 296 + ] 297 + 298 + [[package]] 299 + name = "drm-fourcc" 300 + version = "2.2.0" 301 + source = "registry+https://github.com/rust-lang/crates.io-index" 302 + checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4" 303 + 304 + [[package]] 305 + name = "drm-sys" 306 + version = "0.4.0" 307 + source = "registry+https://github.com/rust-lang/crates.io-index" 308 + checksum = "1369f1679d6b706d234c4c1e0613c415c2c74b598a09ad28080ba2474b72e42d" 309 + dependencies = [ 310 + "libc 0.2.147", 311 + ] 312 + 313 + [[package]] 314 + name = "egl" 315 + version = "0.2.7" 316 + source = "registry+https://github.com/rust-lang/crates.io-index" 317 + checksum = "a373bc9844200b1ff15bd1b245931d1c20d09d06e4ec09f361171f29a4b0752d" 318 + dependencies = [ 319 + "khronos", 320 + "libc 0.2.147", 321 + ] 322 + 323 + [[package]] 324 + name = "errno" 325 + version = "0.3.3" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 328 + dependencies = [ 329 + "errno-dragonfly", 330 + "libc 0.2.147", 331 + "windows-sys 0.48.0", 332 + ] 333 + 334 + [[package]] 335 + name = "errno-dragonfly" 336 + version = "0.1.2" 337 + source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 339 + dependencies = [ 340 + "cc", 341 + "libc 0.2.147", 342 + ] 343 + 344 + [[package]] 144 345 name = "event-listener" 145 346 version = "2.5.3" 146 347 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 156 357 ] 157 358 158 359 [[package]] 360 + name = "fastrand" 361 + version = "2.0.0" 362 + source = "registry+https://github.com/rust-lang/crates.io-index" 363 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 364 + 365 + [[package]] 366 + name = "filetime" 367 + version = "0.2.22" 368 + source = "registry+https://github.com/rust-lang/crates.io-index" 369 + checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 370 + dependencies = [ 371 + "cfg-if", 372 + "libc 0.2.147", 373 + "redox_syscall", 374 + "windows-sys 0.48.0", 375 + ] 376 + 377 + [[package]] 378 + name = "flate2" 379 + version = "1.0.27" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 382 + dependencies = [ 383 + "crc32fast", 384 + "miniz_oxide", 385 + ] 386 + 387 + [[package]] 388 + name = "form_urlencoded" 389 + version = "1.2.0" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 392 + dependencies = [ 393 + "percent-encoding", 394 + ] 395 + 396 + [[package]] 159 397 name = "futures-core" 160 398 version = "0.3.28" 161 399 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 173 411 source = "registry+https://github.com/rust-lang/crates.io-index" 174 412 checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 175 413 dependencies = [ 176 - "fastrand", 414 + "fastrand 1.9.0", 177 415 "futures-core", 178 416 "futures-io", 179 417 "memchr", ··· 184 422 185 423 [[package]] 186 424 name = "gatherer" 187 - version = "0.3.2" 425 + version = "0.3.3" 188 426 dependencies = [ 189 427 "anyhow", 190 428 "arrayvec", 429 + "cargo-util", 430 + "cc", 431 + "drm", 432 + "egl", 433 + "flate2", 434 + "gbm", 191 435 "interprocess", 192 436 "lazy_static", 193 - "libc", 437 + "libc 0.2.147", 438 + "minidl", 194 439 "num_cpus", 440 + "pkg-config", 195 441 "raw-cpuid", 196 442 "rust-ini", 197 443 "rustbus", 444 + "serde", 445 + "serde_json", 446 + "sha2", 198 447 "shared_memory_extended", 448 + "tar", 199 449 "thiserror", 450 + "ureq", 451 + ] 452 + 453 + [[package]] 454 + name = "gbm" 455 + version = "0.12.0" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "f2ec389cda876966cf824111bf6e533fb934c711d473498279964a990853b3c6" 458 + dependencies = [ 459 + "bitflags 1.3.2", 460 + "drm", 461 + "drm-fourcc", 462 + "gbm-sys", 463 + "libc 0.2.147", 464 + ] 465 + 466 + [[package]] 467 + name = "gbm-sys" 468 + version = "0.2.2" 469 + source = "registry+https://github.com/rust-lang/crates.io-index" 470 + checksum = "b63eba9b9b7a231514482deb08759301c9f9f049ac6869403f381834ebfeaf67" 471 + dependencies = [ 472 + "libc 0.2.147", 473 + ] 474 + 475 + [[package]] 476 + name = "generic-array" 477 + version = "0.14.7" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 480 + dependencies = [ 481 + "typenum", 482 + "version_check", 200 483 ] 201 484 202 485 [[package]] ··· 206 489 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 207 490 dependencies = [ 208 491 "cfg-if", 209 - "libc", 492 + "libc 0.2.147", 210 493 "wasi", 211 494 ] 212 495 ··· 223 506 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 224 507 225 508 [[package]] 509 + name = "hex" 510 + version = "0.4.3" 511 + source = "registry+https://github.com/rust-lang/crates.io-index" 512 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 513 + 514 + [[package]] 515 + name = "idna" 516 + version = "0.4.0" 517 + source = "registry+https://github.com/rust-lang/crates.io-index" 518 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 519 + dependencies = [ 520 + "unicode-bidi", 521 + "unicode-normalization", 522 + ] 523 + 524 + [[package]] 226 525 name = "instant" 227 526 version = "0.1.12" 228 527 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 242 541 "futures-core", 243 542 "futures-io", 244 543 "intmap", 245 - "libc", 544 + "libc 0.2.147", 246 545 "once_cell", 247 546 "rustc_version", 248 547 "spinning", ··· 258 557 checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9" 259 558 260 559 [[package]] 560 + name = "itoa" 561 + version = "1.0.9" 562 + source = "registry+https://github.com/rust-lang/crates.io-index" 563 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 564 + 565 + [[package]] 566 + name = "jobserver" 567 + version = "0.1.26" 568 + source = "registry+https://github.com/rust-lang/crates.io-index" 569 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 570 + dependencies = [ 571 + "libc 0.2.147", 572 + ] 573 + 574 + [[package]] 575 + name = "js-sys" 576 + version = "0.3.64" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 579 + dependencies = [ 580 + "wasm-bindgen", 581 + ] 582 + 583 + [[package]] 584 + name = "khronos" 585 + version = "0.1.2" 586 + source = "registry+https://github.com/rust-lang/crates.io-index" 587 + checksum = "c0711aaa80e6ba6eb1fa8978f1f46bfcb38ceb2f3f33f3736efbff39dac89f50" 588 + dependencies = [ 589 + "libc 0.1.12", 590 + ] 591 + 592 + [[package]] 261 593 name = "lazy_static" 262 594 version = "1.4.0" 263 595 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 265 597 266 598 [[package]] 267 599 name = "libc" 600 + version = "0.1.12" 601 + source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122" 603 + 604 + [[package]] 605 + name = "libc" 268 606 version = "0.2.147" 269 607 source = "registry+https://github.com/rust-lang/crates.io-index" 270 608 checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 609 + 610 + [[package]] 611 + name = "linux-raw-sys" 612 + version = "0.4.7" 613 + source = "registry+https://github.com/rust-lang/crates.io-index" 614 + checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" 271 615 272 616 [[package]] 273 617 name = "lock_api" ··· 301 645 ] 302 646 303 647 [[package]] 648 + name = "minidl" 649 + version = "0.1.5" 650 + source = "registry+https://github.com/rust-lang/crates.io-index" 651 + checksum = "87d3d8666e5ed22230c0096edcccf7097905b1e2975869e1b9fe5df40d26d801" 652 + 653 + [[package]] 654 + name = "miniz_oxide" 655 + version = "0.7.1" 656 + source = "registry+https://github.com/rust-lang/crates.io-index" 657 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 658 + dependencies = [ 659 + "adler", 660 + ] 661 + 662 + [[package]] 663 + name = "miow" 664 + version = "0.5.0" 665 + source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "52ffbca2f655e33c08be35d87278e5b18b89550a37dbd598c20db92f6a471123" 667 + dependencies = [ 668 + "windows-sys 0.42.0", 669 + ] 670 + 671 + [[package]] 304 672 name = "nix" 305 673 version = "0.26.2" 306 674 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 308 676 dependencies = [ 309 677 "bitflags 1.3.2", 310 678 "cfg-if", 311 - "libc", 679 + "libc 0.2.147", 312 680 "memoffset", 313 681 "pin-utils", 314 682 "static_assertions", ··· 321 689 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 322 690 dependencies = [ 323 691 "hermit-abi", 324 - "libc", 692 + "libc 0.2.147", 325 693 ] 326 694 327 695 [[package]] ··· 347 715 checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 348 716 349 717 [[package]] 718 + name = "percent-encoding" 719 + version = "2.3.0" 720 + source = "registry+https://github.com/rust-lang/crates.io-index" 721 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 722 + 723 + [[package]] 350 724 name = "pin-project-lite" 351 - version = "0.2.10" 725 + version = "0.2.13" 352 726 source = "registry+https://github.com/rust-lang/crates.io-index" 353 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 727 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 354 728 355 729 [[package]] 356 730 name = "pin-utils" 357 731 version = "0.1.0" 358 732 source = "registry+https://github.com/rust-lang/crates.io-index" 359 733 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 734 + 735 + [[package]] 736 + name = "pkg-config" 737 + version = "0.3.27" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 360 740 361 741 [[package]] 362 742 name = "ppv-lite86" ··· 394 774 source = "registry+https://github.com/rust-lang/crates.io-index" 395 775 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 396 776 dependencies = [ 397 - "libc", 777 + "libc 0.2.147", 398 778 "rand_chacha", 399 779 "rand_core", 400 780 ] ··· 428 808 ] 429 809 430 810 [[package]] 811 + name = "redox_syscall" 812 + version = "0.3.5" 813 + source = "registry+https://github.com/rust-lang/crates.io-index" 814 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 815 + dependencies = [ 816 + "bitflags 1.3.2", 817 + ] 818 + 819 + [[package]] 820 + name = "ring" 821 + version = "0.16.20" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 824 + dependencies = [ 825 + "cc", 826 + "libc 0.2.147", 827 + "once_cell", 828 + "spin", 829 + "untrusted", 830 + "web-sys", 831 + "winapi", 832 + ] 833 + 834 + [[package]] 431 835 name = "rust-ini" 432 836 version = "0.19.0" 433 837 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 469 873 ] 470 874 471 875 [[package]] 876 + name = "rustix" 877 + version = "0.38.13" 878 + source = "registry+https://github.com/rust-lang/crates.io-index" 879 + checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" 880 + dependencies = [ 881 + "bitflags 2.4.0", 882 + "errno", 883 + "libc 0.2.147", 884 + "linux-raw-sys", 885 + "windows-sys 0.48.0", 886 + ] 887 + 888 + [[package]] 889 + name = "rustls" 890 + version = "0.21.7" 891 + source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 893 + dependencies = [ 894 + "log", 895 + "ring", 896 + "rustls-webpki 0.101.5", 897 + "sct", 898 + ] 899 + 900 + [[package]] 901 + name = "rustls-webpki" 902 + version = "0.100.3" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3" 905 + dependencies = [ 906 + "ring", 907 + "untrusted", 908 + ] 909 + 910 + [[package]] 911 + name = "rustls-webpki" 912 + version = "0.101.5" 913 + source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "45a27e3b59326c16e23d30aeb7a36a24cc0d29e71d68ff611cdfb4a01d013bed" 915 + dependencies = [ 916 + "ring", 917 + "untrusted", 918 + ] 919 + 920 + [[package]] 921 + name = "ryu" 922 + version = "1.0.15" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 925 + 926 + [[package]] 927 + name = "same-file" 928 + version = "1.0.6" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 931 + dependencies = [ 932 + "winapi-util", 933 + ] 934 + 935 + [[package]] 472 936 name = "scopeguard" 473 937 version = "1.2.0" 474 938 source = "registry+https://github.com/rust-lang/crates.io-index" 475 939 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 476 940 477 941 [[package]] 942 + name = "sct" 943 + version = "0.7.0" 944 + source = "registry+https://github.com/rust-lang/crates.io-index" 945 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 946 + dependencies = [ 947 + "ring", 948 + "untrusted", 949 + ] 950 + 951 + [[package]] 478 952 name = "semver" 479 953 version = "1.0.18" 480 954 source = "registry+https://github.com/rust-lang/crates.io-index" 481 955 checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 482 956 483 957 [[package]] 958 + name = "serde" 959 + version = "1.0.179" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "0a5bf42b8d227d4abf38a1ddb08602e229108a517cd4e5bb28f9c7eaafdce5c0" 962 + dependencies = [ 963 + "serde_derive", 964 + ] 965 + 966 + [[package]] 967 + name = "serde_derive" 968 + version = "1.0.179" 969 + source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "741e124f5485c7e60c03b043f79f320bff3527f4bbf12cf3831750dc46a0ec2c" 971 + dependencies = [ 972 + "proc-macro2", 973 + "quote", 974 + "syn 2.0.27", 975 + ] 976 + 977 + [[package]] 978 + name = "serde_json" 979 + version = "1.0.106" 980 + source = "registry+https://github.com/rust-lang/crates.io-index" 981 + checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" 982 + dependencies = [ 983 + "itoa", 984 + "ryu", 985 + "serde", 986 + ] 987 + 988 + [[package]] 989 + name = "sha2" 990 + version = "0.10.7" 991 + source = "registry+https://github.com/rust-lang/crates.io-index" 992 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 993 + dependencies = [ 994 + "cfg-if", 995 + "cpufeatures", 996 + "digest", 997 + ] 998 + 999 + [[package]] 484 1000 name = "shared_memory_extended" 485 1001 version = "0.13.0" 486 1002 source = "registry+https://github.com/rust-lang/crates.io-index" 487 1003 checksum = "004d7ece9a3be64f85471d50967710b0a146144225bed5f0abd0514a3bed086f" 488 1004 dependencies = [ 489 1005 "cfg-if", 490 - "libc", 1006 + "libc 0.2.147", 491 1007 "nix", 492 1008 "rand", 493 1009 "win-sys", 494 1010 ] 1011 + 1012 + [[package]] 1013 + name = "shell-escape" 1014 + version = "0.1.5" 1015 + source = "registry+https://github.com/rust-lang/crates.io-index" 1016 + checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 1017 + 1018 + [[package]] 1019 + name = "spin" 1020 + version = "0.5.2" 1021 + source = "registry+https://github.com/rust-lang/crates.io-index" 1022 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 495 1023 496 1024 [[package]] 497 1025 name = "spinning" ··· 531 1059 ] 532 1060 533 1061 [[package]] 1062 + name = "tar" 1063 + version = "0.4.40" 1064 + source = "registry+https://github.com/rust-lang/crates.io-index" 1065 + checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 1066 + dependencies = [ 1067 + "filetime", 1068 + "libc 0.2.147", 1069 + "xattr", 1070 + ] 1071 + 1072 + [[package]] 1073 + name = "tempfile" 1074 + version = "3.8.0" 1075 + source = "registry+https://github.com/rust-lang/crates.io-index" 1076 + checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 1077 + dependencies = [ 1078 + "cfg-if", 1079 + "fastrand 2.0.0", 1080 + "redox_syscall", 1081 + "rustix", 1082 + "windows-sys 0.48.0", 1083 + ] 1084 + 1085 + [[package]] 534 1086 name = "thiserror" 535 1087 version = "1.0.44" 536 1088 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 560 1112 ] 561 1113 562 1114 [[package]] 1115 + name = "tinyvec" 1116 + version = "1.6.0" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1119 + dependencies = [ 1120 + "tinyvec_macros", 1121 + ] 1122 + 1123 + [[package]] 1124 + name = "tinyvec_macros" 1125 + version = "0.1.1" 1126 + source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1128 + 1129 + [[package]] 563 1130 name = "to_method" 564 1131 version = "1.1.0" 565 1132 source = "registry+https://github.com/rust-lang/crates.io-index" 566 1133 checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" 567 1134 568 1135 [[package]] 1136 + name = "typenum" 1137 + version = "1.16.0" 1138 + source = "registry+https://github.com/rust-lang/crates.io-index" 1139 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 1140 + 1141 + [[package]] 1142 + name = "unicode-bidi" 1143 + version = "0.3.13" 1144 + source = "registry+https://github.com/rust-lang/crates.io-index" 1145 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1146 + 1147 + [[package]] 569 1148 name = "unicode-ident" 570 1149 version = "1.0.11" 571 1150 source = "registry+https://github.com/rust-lang/crates.io-index" 572 1151 checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 573 1152 574 1153 [[package]] 1154 + name = "unicode-normalization" 1155 + version = "0.1.22" 1156 + source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1158 + dependencies = [ 1159 + "tinyvec", 1160 + ] 1161 + 1162 + [[package]] 1163 + name = "untrusted" 1164 + version = "0.7.1" 1165 + source = "registry+https://github.com/rust-lang/crates.io-index" 1166 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 1167 + 1168 + [[package]] 1169 + name = "ureq" 1170 + version = "2.7.1" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9" 1173 + dependencies = [ 1174 + "base64", 1175 + "flate2", 1176 + "log", 1177 + "once_cell", 1178 + "rustls", 1179 + "rustls-webpki 0.100.3", 1180 + "url", 1181 + "webpki-roots", 1182 + ] 1183 + 1184 + [[package]] 1185 + name = "url" 1186 + version = "2.4.1" 1187 + source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 1189 + dependencies = [ 1190 + "form_urlencoded", 1191 + "idna", 1192 + "percent-encoding", 1193 + ] 1194 + 1195 + [[package]] 1196 + name = "version_check" 1197 + version = "0.9.4" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1200 + 1201 + [[package]] 575 1202 name = "waker-fn" 576 1203 version = "1.1.0" 577 1204 source = "registry+https://github.com/rust-lang/crates.io-index" 578 1205 checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 579 1206 580 1207 [[package]] 1208 + name = "walkdir" 1209 + version = "2.4.0" 1210 + source = "registry+https://github.com/rust-lang/crates.io-index" 1211 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 1212 + dependencies = [ 1213 + "same-file", 1214 + "winapi-util", 1215 + ] 1216 + 1217 + [[package]] 581 1218 name = "wasi" 582 1219 version = "0.11.0+wasi-snapshot-preview1" 583 1220 source = "registry+https://github.com/rust-lang/crates.io-index" 584 1221 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 585 1222 586 1223 [[package]] 1224 + name = "wasm-bindgen" 1225 + version = "0.2.87" 1226 + source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 1228 + dependencies = [ 1229 + "cfg-if", 1230 + "wasm-bindgen-macro", 1231 + ] 1232 + 1233 + [[package]] 1234 + name = "wasm-bindgen-backend" 1235 + version = "0.2.87" 1236 + source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 1238 + dependencies = [ 1239 + "bumpalo", 1240 + "log", 1241 + "once_cell", 1242 + "proc-macro2", 1243 + "quote", 1244 + "syn 2.0.27", 1245 + "wasm-bindgen-shared", 1246 + ] 1247 + 1248 + [[package]] 1249 + name = "wasm-bindgen-macro" 1250 + version = "0.2.87" 1251 + source = "registry+https://github.com/rust-lang/crates.io-index" 1252 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 1253 + dependencies = [ 1254 + "quote", 1255 + "wasm-bindgen-macro-support", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "wasm-bindgen-macro-support" 1260 + version = "0.2.87" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 1263 + dependencies = [ 1264 + "proc-macro2", 1265 + "quote", 1266 + "syn 2.0.27", 1267 + "wasm-bindgen-backend", 1268 + "wasm-bindgen-shared", 1269 + ] 1270 + 1271 + [[package]] 1272 + name = "wasm-bindgen-shared" 1273 + version = "0.2.87" 1274 + source = "registry+https://github.com/rust-lang/crates.io-index" 1275 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 1276 + 1277 + [[package]] 1278 + name = "web-sys" 1279 + version = "0.3.64" 1280 + source = "registry+https://github.com/rust-lang/crates.io-index" 1281 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 1282 + dependencies = [ 1283 + "js-sys", 1284 + "wasm-bindgen", 1285 + ] 1286 + 1287 + [[package]] 1288 + name = "webpki-roots" 1289 + version = "0.23.1" 1290 + source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" 1292 + dependencies = [ 1293 + "rustls-webpki 0.100.3", 1294 + ] 1295 + 1296 + [[package]] 587 1297 name = "win-sys" 588 1298 version = "0.3.1" 589 1299 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 609 1319 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 610 1320 611 1321 [[package]] 1322 + name = "winapi-util" 1323 + version = "0.1.5" 1324 + source = "registry+https://github.com/rust-lang/crates.io-index" 1325 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1326 + dependencies = [ 1327 + "winapi", 1328 + ] 1329 + 1330 + [[package]] 612 1331 name = "winapi-x86_64-pc-windows-gnu" 613 1332 version = "0.4.0" 614 1333 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 620 1339 source = "registry+https://github.com/rust-lang/crates.io-index" 621 1340 checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" 622 1341 dependencies = [ 623 - "windows_aarch64_msvc", 624 - "windows_i686_gnu", 625 - "windows_i686_msvc", 626 - "windows_x86_64_gnu", 627 - "windows_x86_64_msvc", 1342 + "windows_aarch64_msvc 0.34.0", 1343 + "windows_i686_gnu 0.34.0", 1344 + "windows_i686_msvc 0.34.0", 1345 + "windows_x86_64_gnu 0.34.0", 1346 + "windows_x86_64_msvc 0.34.0", 1347 + ] 1348 + 1349 + [[package]] 1350 + name = "windows-sys" 1351 + version = "0.42.0" 1352 + source = "registry+https://github.com/rust-lang/crates.io-index" 1353 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1354 + dependencies = [ 1355 + "windows_aarch64_gnullvm 0.42.2", 1356 + "windows_aarch64_msvc 0.42.2", 1357 + "windows_i686_gnu 0.42.2", 1358 + "windows_i686_msvc 0.42.2", 1359 + "windows_x86_64_gnu 0.42.2", 1360 + "windows_x86_64_gnullvm 0.42.2", 1361 + "windows_x86_64_msvc 0.42.2", 1362 + ] 1363 + 1364 + [[package]] 1365 + name = "windows-sys" 1366 + version = "0.48.0" 1367 + source = "registry+https://github.com/rust-lang/crates.io-index" 1368 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1369 + dependencies = [ 1370 + "windows-targets", 1371 + ] 1372 + 1373 + [[package]] 1374 + name = "windows-targets" 1375 + version = "0.48.5" 1376 + source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1378 + dependencies = [ 1379 + "windows_aarch64_gnullvm 0.48.5", 1380 + "windows_aarch64_msvc 0.48.5", 1381 + "windows_i686_gnu 0.48.5", 1382 + "windows_i686_msvc 0.48.5", 1383 + "windows_x86_64_gnu 0.48.5", 1384 + "windows_x86_64_gnullvm 0.48.5", 1385 + "windows_x86_64_msvc 0.48.5", 628 1386 ] 629 1387 630 1388 [[package]] 1389 + name = "windows_aarch64_gnullvm" 1390 + version = "0.42.2" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1393 + 1394 + [[package]] 1395 + name = "windows_aarch64_gnullvm" 1396 + version = "0.48.5" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1399 + 1400 + [[package]] 631 1401 name = "windows_aarch64_msvc" 632 1402 version = "0.34.0" 633 1403 source = "registry+https://github.com/rust-lang/crates.io-index" 634 1404 checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" 635 1405 636 1406 [[package]] 1407 + name = "windows_aarch64_msvc" 1408 + version = "0.42.2" 1409 + source = "registry+https://github.com/rust-lang/crates.io-index" 1410 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1411 + 1412 + [[package]] 1413 + name = "windows_aarch64_msvc" 1414 + version = "0.48.5" 1415 + source = "registry+https://github.com/rust-lang/crates.io-index" 1416 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1417 + 1418 + [[package]] 637 1419 name = "windows_i686_gnu" 638 1420 version = "0.34.0" 639 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 640 1422 checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" 641 1423 642 1424 [[package]] 1425 + name = "windows_i686_gnu" 1426 + version = "0.42.2" 1427 + source = "registry+https://github.com/rust-lang/crates.io-index" 1428 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1429 + 1430 + [[package]] 1431 + name = "windows_i686_gnu" 1432 + version = "0.48.5" 1433 + source = "registry+https://github.com/rust-lang/crates.io-index" 1434 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1435 + 1436 + [[package]] 643 1437 name = "windows_i686_msvc" 644 1438 version = "0.34.0" 645 1439 source = "registry+https://github.com/rust-lang/crates.io-index" 646 1440 checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" 647 1441 648 1442 [[package]] 1443 + name = "windows_i686_msvc" 1444 + version = "0.42.2" 1445 + source = "registry+https://github.com/rust-lang/crates.io-index" 1446 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1447 + 1448 + [[package]] 1449 + name = "windows_i686_msvc" 1450 + version = "0.48.5" 1451 + source = "registry+https://github.com/rust-lang/crates.io-index" 1452 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1453 + 1454 + [[package]] 649 1455 name = "windows_x86_64_gnu" 650 1456 version = "0.34.0" 651 1457 source = "registry+https://github.com/rust-lang/crates.io-index" 652 1458 checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" 653 1459 654 1460 [[package]] 1461 + name = "windows_x86_64_gnu" 1462 + version = "0.42.2" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1465 + 1466 + [[package]] 1467 + name = "windows_x86_64_gnu" 1468 + version = "0.48.5" 1469 + source = "registry+https://github.com/rust-lang/crates.io-index" 1470 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1471 + 1472 + [[package]] 1473 + name = "windows_x86_64_gnullvm" 1474 + version = "0.42.2" 1475 + source = "registry+https://github.com/rust-lang/crates.io-index" 1476 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1477 + 1478 + [[package]] 1479 + name = "windows_x86_64_gnullvm" 1480 + version = "0.48.5" 1481 + source = "registry+https://github.com/rust-lang/crates.io-index" 1482 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1483 + 1484 + [[package]] 655 1485 name = "windows_x86_64_msvc" 656 1486 version = "0.34.0" 657 1487 source = "registry+https://github.com/rust-lang/crates.io-index" 658 1488 checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" 1489 + 1490 + [[package]] 1491 + name = "windows_x86_64_msvc" 1492 + version = "0.42.2" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1495 + 1496 + [[package]] 1497 + name = "windows_x86_64_msvc" 1498 + version = "0.48.5" 1499 + source = "registry+https://github.com/rust-lang/crates.io-index" 1500 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1501 + 1502 + [[package]] 1503 + name = "xattr" 1504 + version = "1.0.1" 1505 + source = "registry+https://github.com/rust-lang/crates.io-index" 1506 + checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 1507 + dependencies = [ 1508 + "libc 0.2.147", 1509 + ]
+23 -23
pkgs/applications/misc/pot/Cargo.lock
··· 420 420 421 421 [[package]] 422 422 name = "bstr" 423 - version = "1.6.2" 423 + version = "1.7.0" 424 424 source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 425 + checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 426 426 dependencies = [ 427 427 "memchr", 428 428 "serde", ··· 2390 2390 2391 2391 [[package]] 2392 2392 name = "jobserver" 2393 - version = "0.1.26" 2393 + version = "0.1.27" 2394 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2395 + checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 2396 2396 dependencies = [ 2397 2397 "libc", 2398 2398 ] ··· 2417 2417 2418 2418 [[package]] 2419 2419 name = "json-patch" 2420 - version = "1.1.0" 2420 + version = "1.2.0" 2421 2421 source = "registry+https://github.com/rust-lang/crates.io-index" 2422 - checksum = "4f7765dccf8c39c3a470fc694efe322969d791e713ca46bc7b5c506886157572" 2422 + checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6" 2423 2423 dependencies = [ 2424 2424 "serde", 2425 2425 "serde_json", ··· 4050 4050 4051 4051 [[package]] 4052 4052 name = "regex" 4053 - version = "1.9.6" 4053 + version = "1.10.0" 4054 4054 source = "registry+https://github.com/rust-lang/crates.io-index" 4055 - checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" 4055 + checksum = "d119d7c7ca818f8a53c300863d4f87566aac09943aef5b355bb83969dae75d87" 4056 4056 dependencies = [ 4057 4057 "aho-corasick", 4058 4058 "memchr", 4059 - "regex-automata 0.3.9", 4060 - "regex-syntax 0.7.5", 4059 + "regex-automata 0.4.1", 4060 + "regex-syntax 0.8.0", 4061 4061 ] 4062 4062 4063 4063 [[package]] ··· 4071 4071 4072 4072 [[package]] 4073 4073 name = "regex-automata" 4074 - version = "0.3.9" 4074 + version = "0.4.1" 4075 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" 4076 + checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b" 4077 4077 dependencies = [ 4078 4078 "aho-corasick", 4079 4079 "memchr", 4080 - "regex-syntax 0.7.5", 4080 + "regex-syntax 0.8.0", 4081 4081 ] 4082 4082 4083 4083 [[package]] ··· 4088 4088 4089 4089 [[package]] 4090 4090 name = "regex-syntax" 4091 - version = "0.7.5" 4091 + version = "0.8.0" 4092 4092 source = "registry+https://github.com/rust-lang/crates.io-index" 4093 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 4093 + checksum = "c3cbb081b9784b07cceb8824c8583f86db4814d172ab043f3c23f7dc600bf83d" 4094 4094 4095 4095 [[package]] 4096 4096 name = "reqwest" ··· 4419 4419 4420 4420 [[package]] 4421 4421 name = "semver" 4422 - version = "1.0.19" 4422 + version = "1.0.20" 4423 4423 source = "registry+https://github.com/rust-lang/crates.io-index" 4424 - checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" 4424 + checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 4425 4425 dependencies = [ 4426 4426 "serde", 4427 4427 ] ··· 5321 5321 [[package]] 5322 5322 name = "tauri-plugin-autostart" 5323 5323 version = "0.0.0" 5324 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5324 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5325 5325 dependencies = [ 5326 5326 "auto-launch", 5327 5327 "log", ··· 5334 5334 [[package]] 5335 5335 name = "tauri-plugin-fs-watch" 5336 5336 version = "0.0.0" 5337 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5337 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5338 5338 dependencies = [ 5339 5339 "log", 5340 5340 "notify", ··· 5348 5348 [[package]] 5349 5349 name = "tauri-plugin-log" 5350 5350 version = "0.0.0" 5351 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5351 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5352 5352 dependencies = [ 5353 5353 "byte-unit", 5354 5354 "fern", ··· 5363 5363 [[package]] 5364 5364 name = "tauri-plugin-single-instance" 5365 5365 version = "0.0.0" 5366 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5366 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5367 5367 dependencies = [ 5368 5368 "log", 5369 5369 "serde", ··· 5377 5377 [[package]] 5378 5378 name = "tauri-plugin-sql" 5379 5379 version = "0.0.0" 5380 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5380 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5381 5381 dependencies = [ 5382 5382 "futures-core", 5383 5383 "log", ··· 5393 5393 [[package]] 5394 5394 name = "tauri-plugin-store" 5395 5395 version = "0.0.0" 5396 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5396 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9b20f28d747f6ec3ba5a80bfcd5edc1d573b4c90" 5397 5397 dependencies = [ 5398 5398 "log", 5399 5399 "serde",
+4 -4
pkgs/applications/misc/pot/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "pot"; 26 - version = "2.6.2"; 26 + version = "2.6.3"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "pot-app"; 30 30 repo = "pot-desktop"; 31 31 rev = version; 32 - hash = "sha256-0NnZe1o8HsB1GR6wp8Da/CTLhcve/sGIumD2qb9DC3s="; 32 + hash = "sha256-ag54ns4lqIGjjHj6n8mDJTalQfBjqLxqSudjyeRRSs4="; 33 33 }; 34 34 35 35 sourceRoot = "${src.name}/src-tauri"; ··· 66 66 67 67 dontFixup = true; 68 68 outputHashMode = "recursive"; 69 - outputHash = "sha256-m83cDKtFfwA3Xv8EqXNyF37ss+8qFDdFhu/1X1g7n/0="; 69 + outputHash = "sha256-PqdwoGPsu1j4sDTvBAguDhB2v1yaNWybluLiN37SDa4="; 70 70 }; 71 71 72 72 cargoDeps = rustPlatform.importCargoLock { 73 73 lockFile = ./Cargo.lock; 74 74 outputHashes = { 75 75 # All other crates in the same workspace reuse this hash. 76 - "tauri-plugin-autostart-0.0.0" = "sha256-hvR9tUp7yFhSP2bqE0mGwT8NHL7fGOYQ3Gz2wYi0bXI="; 76 + "tauri-plugin-autostart-0.0.0" = "sha256-wgVsF3H9BT8lBew7tQ308eIQ6cLZT93hD/4eYCDEq98="; 77 77 }; 78 78 }; 79 79
+3 -3
pkgs/applications/misc/tui-journal/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "tui-journal"; 14 - version = "0.3.3"; 14 + version = "0.4.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "AmmarAbouZor"; 18 18 repo = "tui-journal"; 19 19 rev = "v${version}"; 20 - hash = "sha256-UK9Pq+QNEk+AeG5/ohyCiL+lSpENQfiR/Qm0nQGJGrg="; 20 + hash = "sha256-LYOWU3ven9g3NCB9HAWFk3oCBFcWAXU5R4T4EIF14q0="; 21 21 }; 22 22 23 - cargoHash = "sha256-TpNnb3usDkNlcejlSkXb5R1fgVlKNYBFAWi1fEn9uzI="; 23 + cargoHash = "sha256-MnQ5Y+mQIBh+MMIgL09clkPnOYIwFhNeLSvfEt9Lvsg="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+8 -8
pkgs/applications/networking/cluster/k3s/1_26/versions.nix
··· 1 1 { 2 - k3sVersion = "1.26.6+k3s1"; 3 - k3sCommit = "3b1919b0d55811707bd1168f0abf11cccc656c26"; 4 - k3sRepoSha256 = "1g82bkq4w0jpfn1fanj1d24bj46rw908wk50p3cm47rqiqlys72y"; 5 - k3sVendorHash = "sha256-+a9/q5a28zA9SmAdp2IItHR1MdJvlbMW5796bHTfKBw="; 2 + k3sVersion = "1.26.9+k3s1"; 3 + k3sCommit = "4e217286a7ea41b82f1b67ab851d444ecf9a0f9b"; 4 + k3sRepoSha256 = "1rf2gzf3ilcd1gc6d4k1w6cficr70x8lwzcq81njpz72dr6883z3"; 5 + k3sVendorHash = "sha256-heCQNRaa0qFNkL69KEiIH2qEg+pukgS+fLOSWcwFddA="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 k3sRootVersion = "0.12.2"; 8 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k"; 9 - k3sCNIVersion = "1.2.0-k3s1"; 10 - k3sCNISha256 = "0hzcap4vbl94zsiqc66dlwjgql50gw5g6f0adag0p8yqwcy6vaw2"; 11 - containerdVersion = "1.7.1-k3s1"; 12 - containerdSha256 = "00k7nkclfxwbzcgnn8s7rkrxyn0zpk57nyy18icf23wsj352gfrn"; 9 + k3sCNIVersion = "1.3.0-k3s1"; 10 + k3sCNISha256 = "0zma9g4wvdnhs9igs03xlx15bk2nq56j73zns9xgqmfiixd9c9av"; 11 + containerdVersion = "1.7.6-k3s1.26"; 12 + containerdSha256 = "1bj7nggfmkrrgm5yk08p665z1mw1y376k4g3vjbkqldfglzpx7sq"; 13 13 criCtlVersion = "1.26.0-rc.0-k3s1"; 14 14 }
+2 -2
pkgs/applications/networking/cluster/kubedb-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubedb-cli"; 5 - version = "0.35.0"; 5 + version = "0.35.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kubedb"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-keYCF/Jte3sgJi4fnVO1ZDAsYyqXlHzX91tyS5oVCW4="; 11 + sha256 = "sha256-vpjz2t5wnSWbxc5kdASXIaq2m7izqmC3aSLXvnC+IyE="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/applications/networking/cluster/levant/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "levant"; 5 - version = "0.3.2"; 5 + version = "0.3.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = "levant"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-UI8PVvTqk8D4S9kq3sgxrm8dkRokpgkLyTN6pzUXNV0="; 11 + sha256 = "sha256-pinrBLzBMptqzMMiQmZob6B5rNNyQsaEkuECFFyTkrw="; 12 12 }; 13 13 14 - vendorHash = "sha256-MzKttGfuIg0Pp/iz68EpXuk4I+tFozhIabKlsWuvJ48="; 14 + vendorHash = "sha256-z3QoDcp7l3XUNo4xvgd6iD1Nw6cly2CoxjRtbo+IKQ0="; 15 15 16 16 # The tests try to connect to a Nomad cluster. 17 17 doCheck = false;
+15 -8
pkgs/applications/networking/instant-messengers/ferdium/default.nix
··· 1 - { lib, mkFranzDerivation, fetchurl, xorg, nix-update-script }: 1 + { lib, mkFranzDerivation, fetchurl, xorg, nix-update-script, stdenv }: 2 2 3 - mkFranzDerivation rec { 3 + let 4 + arch = { 5 + x86_64-linux = "amd64"; 6 + aarch64-linux = "arm64"; 7 + }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 8 + hash = { 9 + amd64-linux_hash = "sha256-Oai5z6/CE/R2rH9LBVhY7eaKpF8eIIYI+3vjJPbq+rw="; 10 + arm64-linux_hash = "sha256-bRJTktwnyZgCow8oRZNhTK8FgOhIcjrbESVlYfeaa8E="; 11 + }."${arch}-linux_hash"; 12 + in mkFranzDerivation rec { 4 13 pname = "ferdium"; 5 14 name = "Ferdium"; 6 15 version = "6.4.1"; 7 16 src = fetchurl { 8 - url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-amd64.deb"; 9 - hash = "sha256-Oai5z6/CE/R2rH9LBVhY7eaKpF8eIIYI+3vjJPbq+rw="; 17 + url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-${arch}.deb"; 18 + inherit hash; 10 19 }; 11 20 12 21 extraBuildInputs = [ xorg.libxshmfence ]; 13 22 14 23 passthru = { 15 - updateScript = nix-update-script { 16 - extraArgs = [ "--override-filename" ./default.nix ]; 17 - }; 24 + updateScript = ./update.sh; 18 25 }; 19 26 20 27 meta = with lib; { ··· 22 29 homepage = "https://ferdium.org/"; 23 30 license = licenses.asl20; 24 31 maintainers = with maintainers; [ magnouvean ]; 25 - platforms = [ "x86_64-linux" ]; 32 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 26 33 hydraPlatforms = [ ]; 27 34 }; 28 35 }
+40
pkgs/applications/networking/instant-messengers/ferdium/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl gnused nix-prefetch jq 3 + 4 + set -e 5 + 6 + dirname="$(dirname "$0")" 7 + 8 + updateHash() 9 + { 10 + version=$1 11 + arch=$2 12 + 13 + hashKey="${arch}-linux_hash" 14 + 15 + url="https://github.com/ferdium/ferdium-app/releases/download/v$version/Ferdium-linux-$version-$arch.deb" 16 + hash=$(nix-prefetch-url --type sha256 $url) 17 + sriHash="$(nix hash to-sri --type sha256 $hash)" 18 + 19 + sed -i "s|$hashKey = \"[a-zA-Z0-9\/+-=]*\";|$hashKey = \"$sriHash\";|g" "$dirname/default.nix" 20 + } 21 + 22 + updateVersion() 23 + { 24 + sed -i "s/version = \"[0-9.]*\";/version = \"$1\";/g" "$dirname/default.nix" 25 + } 26 + 27 + currentVersion=$(cd $dirname && nix eval --raw -f ../../../../.. ferdium.version) 28 + 29 + latestTag=$(curl https://api.github.com/repos/ferdium/ferdium-app/releases/latest | jq -r ".tag_name") 30 + latestVersion="$(expr $latestTag : 'v\(.*\)')" 31 + 32 + if [[ "$currentVersion" == "$latestVersion" ]]; then 33 + echo "Ferdium is up-to-date: ${currentVersion}" 34 + exit 0 35 + fi 36 + 37 + updateVersion $latestVersion 38 + 39 + updateHash $latestVersion amd64 40 + updateHash $latestVersion arm64
+20 -17
pkgs/applications/networking/instant-messengers/webcord/default.nix
··· 13 13 14 14 buildNpmPackage rec { 15 15 pname = "webcord"; 16 - version = "4.4.2"; 16 + version = "4.4.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "SpacingBat3"; 20 20 repo = "WebCord"; 21 21 rev = "v${version}"; 22 - hash = "sha256-23YmyRU+xBXpC7bZtBY3RZeVpLFQ3I/Ag5Tvi3m9cIs="; 22 + hash = "sha256-Se73TANnZUvbSe3v4woofRzYARP2h2HjO1kv/5sDRyA="; 23 23 }; 24 24 25 - npmDepsHash = "sha256-gHX5ZdcC46BwMu22G05Q8UhvZ6CtQ1HSf6KLLlN2iX0="; 25 + npmDepsHash = "sha256-O3eFtgDO+2A7PygrLj6iT/rptnG+oR5tD2lhhz6Iwug="; 26 26 27 27 nativeBuildInputs = [ 28 28 copyDesktopItems 29 29 python3 30 30 ]; 31 31 32 - libPath = lib.makeLibraryPath [ 33 - pipewire 34 - libpulseaudio 35 - ]; 36 - 37 32 # npm install will error when electron tries to download its binary 38 33 # we don't need it anyways since we wrap the program with our nixpkgs electron 39 - ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 34 + env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 40 35 41 36 # remove husky commit hooks, errors and aren't needed for packaging 42 37 postPatch = '' ··· 44 39 ''; 45 40 46 41 # override installPhase so we can copy the only folders that matter 47 - installPhase = '' 42 + installPhase = 43 + let 44 + libPath = lib.makeLibraryPath [ 45 + libpulseaudio 46 + pipewire 47 + ]; 48 + binPath = lib.makeBinPath [ xdg-utils ]; 49 + in 50 + '' 48 51 runHook preInstall 49 52 50 53 # Remove dev deps that aren't necessary for running the app ··· 56 59 install -Dm644 sources/assets/icons/app.png $out/share/icons/hicolor/256x256/apps/webcord.png 57 60 58 61 # Add xdg-utils to path via suffix, per PR #181171 59 - makeWrapper '${electron_25}/bin/electron' $out/bin/webcord \ 62 + makeWrapper '${lib.getExe electron_25}' $out/bin/webcord \ 60 63 --prefix LD_LIBRARY_PATH : ${libPath}:$out/opt/webcord \ 61 - --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" \ 62 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland}}" \ 64 + --suffix PATH : "${binPath}" \ 65 + --add-flags "--ozone-platform-hint=auto" \ 63 66 --add-flags $out/lib/node_modules/webcord/ 64 67 65 68 runHook postInstall ··· 78 81 79 82 passthru.updateScript = nix-update-script { }; 80 83 81 - meta = with lib; { 84 + meta = { 82 85 description = "A Discord and SpaceBar electron-based client implemented without Discord API"; 83 86 homepage = "https://github.com/SpacingBat3/WebCord"; 84 87 downloadPage = "https://github.com/SpacingBat3/WebCord/releases"; 85 88 changelog = "https://github.com/SpacingBat3/WebCord/releases/tag/v${version}"; 86 - license = licenses.mit; 89 + license = lib.licenses.mit; 87 90 mainProgram = "webcord"; 88 - maintainers = with maintainers; [ huantian ]; 89 - platforms = platforms.linux; 91 + maintainers = with lib.maintainers; [ huantian ]; 92 + platforms = lib.platforms.linux; 90 93 }; 91 94 }
+4 -1
pkgs/applications/networking/nali/default.nix
··· 8 8 owner = "zu1k"; 9 9 repo = "nali"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-JIP0QX1okCfDj2Y6wZ5TaV3QH0WP3oU3JjaKK6vMfWY="; 11 + hash = "sha256-JIP0QX1okCfDj2Y6wZ5TaV3QH0WP3oU3JjaKK6vMfWY="; 12 12 }; 13 13 14 14 vendorHash = "sha256-wIp/ShUddz+RIcsEuKWUfxsV/wNB2X1jZtIltBZ0ROM="; 15 15 subPackages = [ "." ]; 16 16 17 17 nativeBuildInputs = [ installShellFiles ]; 18 + 19 + CGO_ENABLED = 0; 20 + ldflags = [ "-s" "-w" "-X github.com/zu1k/nali/internal/constant.Version=${version}" ]; 18 21 19 22 postInstall = '' 20 23 installShellCompletion --cmd nali \
+2 -2
pkgs/applications/radio/cloudlog/default.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "cloudlog"; 11 - version = "2.4.9"; 11 + version = "2.4.10"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "magicbug"; 15 15 repo = "Cloudlog"; 16 16 rev = version; 17 - sha256 = "sha256-sygkddnSou1U2ZEwNhKvHCkFEl91pYSYOjbKPLqgGj4="; 17 + hash = "sha256-Hj/Qtx9g73H3eKPQgQE+nRqjG344IbxzRX1y/iPgJAc="; 18 18 }; 19 19 20 20 postPath = ''
+2 -2
pkgs/applications/science/math/calc/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "calc"; 13 - version = "2.14.3.5"; 13 + version = "2.15.0.1"; 14 14 15 15 src = fetchurl { 16 16 urls = [ 17 17 "https://github.com/lcn2/calc/releases/download/v${finalAttrs.version}/calc-${finalAttrs.version}.tar.bz2" 18 18 "http://www.isthe.com/chongo/src/calc/calc-${finalAttrs.version}.tar.bz2" 19 19 ]; 20 - hash = "sha256-4eXs6NDfsJO5Vr9Mo2jC16hTRAyt++1s+Z/JrWDKwUk="; 20 + hash = "sha256-u/mt9y4805IWYDdEHz94dPb4V+d4YVrrhzz8v3B+q24="; 21 21 }; 22 22 23 23 postPatch = ''
+2 -2
pkgs/applications/version-management/scriv/default.nix
··· 9 9 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "scriv"; 12 - version = "1.3.1"; 12 + version = "1.4.0"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-TfWX7gp7PcwNUxXXZJ3wke/LGz/wjwtRppg0ByfRcRg="; 16 + hash = "sha256-vdGtdJGkaUzH2JoxuFsfM57OodlxbEHuLl81giKUn6U="; 17 17 }; 18 18 19 19 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/applications/version-management/sourcehut/hg.nix
··· 3 3 , buildGoModule 4 4 , buildPythonPackage 5 5 , srht 6 - , hglib 6 + , python-hglib 7 7 , scmsrht 8 8 , unidiff 9 9 , python ··· 43 43 44 44 propagatedBuildInputs = [ 45 45 srht 46 - hglib 46 + python-hglib 47 47 scmsrht 48 48 unidiff 49 49 ];
+7 -5
pkgs/by-name/co/cowsql/package.nix
··· 7 7 , raft-cowsql 8 8 , sqlite 9 9 , incus 10 - , unstableGitUpdater 10 + , gitUpdater 11 11 }: 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "cowsql"; 15 - version = "unstable-2023-09-21"; 15 + version = "0.15.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "cowsql"; 19 19 repo = "cowsql"; 20 - rev = "b728f0a43b9ad416f9c5fa1fda8b205c7a469d80"; 21 - hash = "sha256-B4ORrsUTfk/7glSpDndw1fCfFmd72iFr+2Xm5CryeZQ="; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-+za3pIcV4BhoImKvJlKatCK372wL4OyPbApQvGxGGGk="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 43 43 inherit incus; 44 44 }; 45 45 46 - updateScript = unstableGitUpdater { }; 46 + updateScript = gitUpdater { 47 + rev-prefix = "v"; 48 + }; 47 49 }; 48 50 49 51 meta = with lib; {
+32
pkgs/by-name/gi/gickup/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , nix-update-script 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "gickup"; 9 + version = "0.10.21"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "cooperspencer"; 13 + repo = "gickup"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-o8uLdkk0aZWIj+mKsp/XGKcwpV0rGFcZnmV4MuHKlUg="; 16 + }; 17 + 18 + vendorHash = "sha256-NAYkQsCt32mtHFXZC0g3OrlrOceUaeGH4bKWF7B08po="; 19 + 20 + ldflags = ["-X main.version=${version}"]; 21 + 22 + passthru.updateScript = nix-update-script { }; 23 + 24 + meta = { 25 + description = "Tool to backup repositories"; 26 + homepage = "https://github.com/cooperspencer/gickup"; 27 + changelog = "https://github.com/cooperspencer/gickup/releases/tag/v${version}"; 28 + maintainers = with lib.maintainers; [ adamcstephens ]; 29 + mainProgram = "gickup"; 30 + license = lib.licenses.asl20; 31 + }; 32 + }
+51
pkgs/by-name/gu/guile-disarchive/package.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , guile 5 + , autoreconfHook 6 + , guile-gcrypt 7 + , guile-lzma 8 + , guile-quickcheck 9 + , pkg-config 10 + , zlib 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "guile-disarchive"; 15 + version = "0.5.0"; 16 + 17 + src = fetchurl { 18 + url = "https://files.ngyro.com/disarchive/disarchive-${version}.tar.gz"; 19 + hash = "sha256-Agt7v5HTpaskXuYmMdGDRIolaqCHUpwd/CfbZCe9Ups="; 20 + }; 21 + 22 + strictDeps = true; 23 + 24 + nativeBuildInputs = [ 25 + autoreconfHook 26 + guile 27 + pkg-config 28 + ]; 29 + 30 + buildInputs = [ 31 + guile 32 + zlib 33 + ]; 34 + 35 + propagatedBuildInputs = [ 36 + guile-gcrypt 37 + guile-lzma 38 + ]; 39 + 40 + nativeCheckInputs = [ guile-quickcheck ]; 41 + 42 + doCheck = !stdenv.isDarwin; 43 + 44 + meta = with lib; { 45 + description = "Disassemble software into data and metadata"; 46 + homepage = "https://ngyro.com/software/disarchive.html"; 47 + license = licenses.gpl3Plus; 48 + maintainers = with maintainers; [ foo-dogsquared ]; 49 + platforms = guile.meta.platforms; 50 + }; 51 + }
+1 -1
pkgs/by-name/gu/guile-lzma/package.nix
··· 20 20 nativeBuildInputs = [ 21 21 guile 22 22 pkg-config 23 - scheme-bytestructures 24 23 ]; 25 24 buildInputs = [ guile ]; 26 25 propagatedBuildInputs = [ xz ]; 26 + propagatedNativeBuildInputs = [ scheme-bytestructures ]; 27 27 28 28 doCheck = true; 29 29
+30
pkgs/by-name/gu/guile-quickcheck/package.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , pkg-config 5 + , guile 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "guile-quickcheck"; 10 + version = "0.1.0"; 11 + 12 + src = fetchurl { 13 + url = "https://files.ngyro.com/guile-quickcheck/guile-quickcheck-${version}.tar.gz"; 14 + hash = "sha256-y5msW+mbQ7YeucRS2VNUPokOKoP8g6ysKJ2UMWiIvA4="; 15 + }; 16 + 17 + strictDeps = true; 18 + nativeBuildInputs = [ guile pkg-config ]; 19 + buildInputs = [ guile ]; 20 + 21 + doCheck = !stdenv.isDarwin; 22 + 23 + meta = with lib; { 24 + homepage = "https://ngyro.com/software/guile-quickcheck.html"; 25 + description = "Guile library providing tools for randomized, property-based testing"; 26 + license = licenses.gpl3Plus; 27 + maintainers = with maintainers; [ foo-dogsquared ]; 28 + platforms = guile.meta.platforms; 29 + }; 30 + }
+38
pkgs/by-name/gu/guile-zstd/package.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitea 4 + , autoreconfHook 5 + , pkg-config 6 + , guile 7 + , texinfo 8 + , zstd 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "guile-zstd"; 13 + version = "0.1.1"; 14 + 15 + src = fetchFromGitea { 16 + domain = "notabug.org"; 17 + owner = "guile-zstd"; 18 + repo = "guile-zstd"; 19 + rev = "v${version}"; 20 + hash = "sha256-IAyDoqb7qHAy666hxs6CCZrFnfwwV8AaR92XlQQ6FLE="; 21 + }; 22 + 23 + strictDeps = true; 24 + nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ]; 25 + buildInputs = [ guile ]; 26 + propagatedBuildInputs = [ zstd ]; 27 + makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; 28 + 29 + doCheck = !stdenv.isDarwin; 30 + 31 + meta = with lib; { 32 + description = "A GNU Guile library providing bindings to zstd"; 33 + homepage = "https://notabug.org/guile-zstd/guile-zstd"; 34 + license = licenses.gpl3Plus; 35 + maintainers = with maintainers; [ foo-dogsquared ]; 36 + platforms = guile.meta.platforms; 37 + }; 38 + }
+2
pkgs/by-name/op/openpgl/package.nix
··· 31 31 "-DTBB_ROOT=${tbb.out}" 32 32 ]; 33 33 34 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isAarch64 "-flax-vector-conversions"; 35 + 34 36 meta = { 35 37 description = "Intel Open Path Guiding Library"; 36 38 homepage = "https://github.com/OpenPathGuidingLibrary/openpgl";
+91
pkgs/by-name/tr/tradingview/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoPatchelfHook 5 + , squashfsTools 6 + , makeBinaryWrapper 7 + , alsa-lib 8 + , atk 9 + , at-spi2-atk 10 + , cups 11 + , gtk3 12 + , libdrm 13 + , libsecret 14 + , libxkbcommon 15 + , mesa 16 + , pango 17 + , sqlite 18 + , systemd 19 + , wayland 20 + , xorg 21 + }: 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "tradingview"; 25 + version = "2.6.1"; 26 + revision = "44"; 27 + src = fetchurl { 28 + url = "https://api.snapcraft.io/api/v1/snaps/download/nJdITJ6ZJxdvfu8Ch7n5kH5P99ClzBYV_${revision}.snap"; 29 + hash = "sha512-Hd00TWjPskd0QDzpOSwQCuMw20nW4n1xxRkT1rA95pzbXtw7XFxrJdMWkzWDbucuokU2qR2b5tovAHAgw9E0tQ=="; 30 + }; 31 + 32 + nativeBuildInputs = [ 33 + autoPatchelfHook 34 + makeBinaryWrapper 35 + squashfsTools 36 + ]; 37 + 38 + buildInputs = [ 39 + stdenv.cc.cc.lib 40 + alsa-lib 41 + atk 42 + at-spi2-atk 43 + cups 44 + gtk3 45 + libdrm 46 + libsecret 47 + libxkbcommon 48 + mesa 49 + pango 50 + sqlite 51 + systemd 52 + wayland 53 + xorg.libxcb 54 + xorg.libX11 55 + xorg.libXext 56 + ]; 57 + 58 + unpackPhase = '' 59 + runHook preUnpack 60 + unsquashfs $src 61 + runHook postUnpack 62 + ''; 63 + 64 + installPhase = '' 65 + runHook preInstall 66 + 67 + mkdir -p $out 68 + cp -r squashfs-root/* $out 69 + 70 + mkdir -p $out/share/applications 71 + mv $out/meta/gui/tradingview.desktop $out/share/applications 72 + substituteInPlace $out/share/applications/tradingview.desktop --replace \$\{SNAP} $out 73 + 74 + mkdir $out/bin 75 + makeBinaryWrapper $out/tradingview $out/bin/tradingview --prefix LD_LIBRARY_PATH : ${ lib.makeLibraryPath buildInputs } 76 + 77 + runHook postInstall 78 + ''; 79 + 80 + meta = with lib; { 81 + description = "Charting platform for traders and investors"; 82 + homepage = "https://www.tradingview.com/desktop/"; 83 + changelog = "https://www.tradingview.com/support/solutions/43000673888/"; 84 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 85 + license = licenses.unfree; 86 + maintainers = with maintainers; [ prominentretail ]; 87 + platforms = [ "x86_64-linux" ]; 88 + mainProgram = "tradingview"; 89 + }; 90 + } 91 +
+70
pkgs/by-name/tr/tradingview/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p curl jq git gnused gnugrep 3 + 4 + # 5 + # Get latest version of TradingView from Snapcraft. 6 + # 7 + 8 + snap_info=($( 9 + curl -s -H 'X-Ubuntu-Series: 16' \ 10 + 'https://api.snapcraft.io/api/v1/snaps/details/tradingview' \ 11 + | jq --raw-output \ 12 + '.revision,.download_sha512,.version,.last_updated' 13 + )) 14 + 15 + # "revision" is the actual version identifier; "version" is for human consumption. 16 + revision="${snap_info[0]}" 17 + sha512="${snap_info[1]}" 18 + sri=$(nix hash to-sri --type "sha512" $sha512) 19 + upstream_version="${snap_info[2]}" 20 + last_updated="${snap_info[3]}" 21 + 22 + echo "Latest release is $upstream_version from $last_updated." 23 + 24 + # 25 + # Read the current TradingView version. 26 + # 27 + 28 + nixpkgs="$(git rev-parse --show-toplevel)" 29 + tradingview_nix="$nixpkgs/pkgs/applications/finance/tradingview/default.nix" 30 + current_nix_version=$( 31 + grep 'version\s*=' "$tradingview_nix" \ 32 + | sed -Ene 's/.*"(.*)".*/\1/p' 33 + ) 34 + 35 + echo "Current nix version: $current_nix_version" 36 + 37 + if [[ "$current_nix_version" = "$upstream_version" ]]; then 38 + echo "TradingView is already up-to-date" 39 + exit 0 40 + fi 41 + 42 + # 43 + # Find and replace. 44 + # 45 + 46 + echo "Updating from ${current_nix_version} to ${upstream_version}, released ${last_updated}" 47 + 48 + sed --regexp-extended \ 49 + -e 's/revision\s*=\s*"[0-9]+"\s*;/revision = "'"${revision}"'";/' \ 50 + -e 's/hash\s*=\s*"[^"]*"\s*;/hash = "'"${sri}"'";/' \ 51 + -e 's/version\s*=\s*".*"\s*;/version = "'"${upstream_version}"'";/' \ 52 + -i "$tradingview_nix" 53 + 54 + # 55 + # Attempt a build. 56 + # 57 + 58 + export NIXPKGS_ALLOW_UNFREE=1 59 + 60 + if ! nix-build -A tradingview "$nixpkgs"; then 61 + echo "The updated TradingView failed to build." 62 + exit 1 63 + fi 64 + 65 + # 66 + # Commit changes. 67 + # 68 + git add "$tradingview_nix" 69 + git commit -m "tradingview: ${current_nix_version} -> ${upstream_version}" 70 +
+3 -3
pkgs/by-name/up/uplosi/package.nix
··· 4 4 }: 5 5 buildGo121Module rec { 6 6 pname = "uplosi"; 7 - version = "0.1.1"; 7 + version = "0.1.2"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "edgelesssys"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - hash = "sha256-YhB0kx/rbHMHSPC2zWcBY7bD677btSCyPEgWY7yuxC4="; 13 + hash = "sha256-9hOeKnjH6r3CPQSe6fQ6PXlVPEJ9NiyXvp5N1krG2XA="; 14 14 }; 15 15 16 - vendorHash = "sha256-3WLDmw2rhmjrKJ8QXtARS9p8qFx17iwUnljwoUep2uc="; 16 + vendorHash = "sha256-RsjUPLe8omoN+XGyNhHDxzNfZR7VVTkh/f/On1oCRqM="; 17 17 18 18 CGO_ENABLED = "0"; 19 19 ldflags = [ "-s" "-w" "-buildid=" "-X main.version=${version}" ];
+76
pkgs/by-name/ve/vercel-pkg/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchYarnDeps 5 + , makeWrapper 6 + , nodejs 7 + , prefetch-yarn-deps 8 + , yarn 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "pkg"; 13 + version = "5.8.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "vercel"; 17 + repo = "pkg"; 18 + rev = version; 19 + hash = "sha256-h3rHR3JE9hVcd3oiE7VL2daYXGTQo7NcOHGC6pmE/xs="; 20 + }; 21 + 22 + offlineCache = fetchYarnDeps { 23 + yarnLock = "${src}/yarn.lock"; 24 + hash = "sha256-KesP3X7LwZ7KSIxcCPXdn/sWcX9TJlwT9z/SdotS2ZQ="; 25 + }; 26 + 27 + nativeBuildInputs = [ 28 + makeWrapper 29 + nodejs 30 + prefetch-yarn-deps 31 + yarn 32 + ]; 33 + 34 + configurePhase = '' 35 + runHook preConfigure 36 + 37 + export HOME=$(mktemp -d) 38 + yarn config --offline set yarn-offline-mirror "$offlineCache" 39 + fixup-yarn-lock yarn.lock 40 + yarn --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive install 41 + patchShebangs node_modules 42 + 43 + runHook postConfigure 44 + ''; 45 + 46 + buildPhase = '' 47 + runHook preBuild 48 + 49 + yarn --offline prepare 50 + 51 + runHook postBuild 52 + ''; 53 + 54 + installPhase = '' 55 + runHook preInstall 56 + 57 + yarn --offline --production install 58 + 59 + mkdir -p "$out/lib/node_modules/pkg" 60 + cp -r . "$out/lib/node_modules/pkg" 61 + 62 + makeWrapper "${nodejs}/bin/node" "$out/bin/pkg" \ 63 + --add-flags "$out/lib/node_modules/pkg/lib-es5/bin.js" 64 + 65 + runHook postInstall 66 + ''; 67 + 68 + meta = { 69 + description = "Package your Node.js project into an executable"; 70 + homepage = "https://github.com/vercel/pkg"; 71 + license = lib.licenses.mit; 72 + mainProgram = "pkg"; 73 + maintainers = with lib.maintainers; [ cmcdragonkai ]; 74 + platforms = lib.platforms.all; 75 + }; 76 + }
+2 -2
pkgs/data/misc/ddccontrol-db/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "ddccontrol-db"; 9 - version = "20230911"; 9 + version = "20231004"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ddccontrol"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-3lGzQ95ZS9yr9dX+wCTmX6Q+IsbMCfBa4zhcyxsG4+w="; 15 + sha256 = "sha256-C/FqLczkQ9thoAdBI2aDDKgp5ByTWVOJ9bcD9ICqyFM="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ autoreconfHook intltool ];
+2
pkgs/desktops/plasma-5/systemsettings.nix
··· 17 17 , kactivities 18 18 , kactivities-stats 19 19 , kirigami2 20 + , kirigami-addons 20 21 , kcrash 21 22 , plasma-workspace 22 23 }: ··· 41 42 kactivities 42 43 kactivities-stats 43 44 kirigami2 45 + kirigami-addons 44 46 kcrash 45 47 plasma-workspace 46 48 ];
+2 -1
pkgs/development/compilers/dmd/generic.nix
··· 155 155 fi 156 156 157 157 ${dmd_bin}/rdmd dmd/compiler/src/build.d -j$buildJobs HOST_DMD=${dmd_bin}/dmd $buildFlags 158 + make -C dmd/druntime -f posix.mak DMD=${pathToDmd} $buildFlags -j$buildJobs 158 159 echo ${tzdata}/share/zoneinfo/ > TZDatabaseDirFile 159 160 echo ${lib.getLib curl}/lib/libcurl${stdenv.hostPlatform.extensions.sharedLibrary} > LibcurlPathFile 160 161 make -C phobos -f posix.mak $buildFlags -j$buildJobs DMD=${pathToDmd} DFLAGS="-version=TZDatabaseDir -version=LibcurlPath -J$PWD" ··· 195 196 installManPage dmd/docs/man/man*/* 196 197 197 198 mkdir -p $out/include/dmd 198 - cp -r {druntime/import/*,phobos/{std,etc}} $out/include/dmd/ 199 + cp -r {dmd/druntime/import/*,phobos/{std,etc}} $out/include/dmd/ 199 200 200 201 mkdir $out/lib 201 202 cp phobos/generated/${osname}/release/${bits}/libphobos2.* $out/lib/
-1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 2379 2379 - hledger-chart # failure in job https://hydra.nixos.org/build/233205387 at 2023-09-02 2380 2380 - hledger-diff # failure in job https://hydra.nixos.org/build/233199639 at 2023-09-02 2381 2381 - hledger-flow # failure in job https://hydra.nixos.org/build/233252169 at 2023-09-02 2382 - - hledger-iadd # failure in job https://hydra.nixos.org/build/233198670 at 2023-09-02 2383 2382 - hledger-irr # failure in job https://hydra.nixos.org/build/233230276 at 2023-09-02 2384 2383 - hledger-makeitso # failure in job https://hydra.nixos.org/build/233213046 at 2023-09-02 2385 2384 - hledger-vty # failure in job https://hydra.nixos.org/build/233191782 at 2023-09-02
-2
pkgs/development/haskell-modules/hackage-packages.nix
··· 147458 147458 testToolDepends = [ hspec-discover ]; 147459 147459 description = "A terminal UI as drop-in replacement for hledger add"; 147460 147460 license = lib.licenses.bsd3; 147461 - hydraPlatforms = lib.platforms.none; 147462 147461 mainProgram = "hledger-iadd"; 147463 - broken = true; 147464 147462 }) {}; 147465 147463 147466 147464 "hledger-interest" = callPackage
+2 -2
pkgs/development/interpreters/elixir/1.15.nix
··· 1 1 { mkDerivation }: 2 2 mkDerivation { 3 - version = "1.15.6"; 4 - sha256 = "sha256-eRwyqylldsJOsGAwm61m7jX1yrVDrTPS0qO23lJkcKc="; 3 + version = "1.15.7"; 4 + sha256 = "sha256-6GfZycylh+sHIuiQk/GQr1pRQRY1uBycSQdsVJ0J13k="; 5 5 # https://hexdocs.pm/elixir/1.15.0/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp 6 6 minimumOTPVersion = "24"; 7 7 escriptPath = "lib/elixir/scripts/generate_app.escript";
+1 -1
pkgs/development/lua-modules/overrides.nix
··· 582 582 hash = "sha256-pLAisfnSDoAToQO/kdKTdic6vEug7/WFNtgOfj0bRAE="; 583 583 }; 584 584 585 - propagatedBuildInputs = oa.propagatedBuildInputs ++ [ cargo rustPlatform.cargoSetupHook ]; 585 + nativeBuildInputs = oa.nativeBuildInputs ++ [ cargo rustPlatform.cargoSetupHook ]; 586 586 587 587 }); 588 588
+1
pkgs/development/node-packages/aliases.nix
··· 106 106 inherit (pkgs) npm-check-updates; # added 2023-08-22 107 107 ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04 108 108 parcel-bundler = parcel; # added 2023-09-04 109 + pkg = pkgs.vercel-pkg; # added 2023-10-04 109 110 prettier_d_slim = pkgs.prettier-d-slim; # added 2023-09-14 110 111 inherit (pkgs) pxder; # added 2023-09-26 111 112 inherit (pkgs) quicktype; # added 2023-09-09
-1
pkgs/development/node-packages/node-packages.json
··· 188 188 , "peerflix" 189 189 , "peerflix-server" 190 190 , {"pgrok-build-deps": "../../tools/networking/pgrok/build-deps"} 191 - , "pkg" 192 191 , "pm2" 193 192 , "pnpm" 194 193 , "poor-mans-t-sql-formatter-cli"
-168
pkgs/development/node-packages/node-packages.nix
··· 90646 90646 bypassCache = true; 90647 90647 reconstructLock = true; 90648 90648 }; 90649 - pkg = nodeEnv.buildNodePackage { 90650 - name = "pkg"; 90651 - packageName = "pkg"; 90652 - version = "5.8.1"; 90653 - src = fetchurl { 90654 - url = "https://registry.npmjs.org/pkg/-/pkg-5.8.1.tgz"; 90655 - sha512 = "CjBWtFStCfIiT4Bde9QpJy0KeH19jCfwZRJqHFDFXfhUklCx8JoFmMj3wgnEYIwGmZVNkhsStPHEOnrtrQhEXA=="; 90656 - }; 90657 - dependencies = [ 90658 - sources."@babel/generator-7.18.2" 90659 - sources."@babel/helper-string-parser-7.22.5" 90660 - sources."@babel/helper-validator-identifier-7.22.20" 90661 - sources."@babel/parser-7.18.4" 90662 - sources."@babel/types-7.19.0" 90663 - sources."@jridgewell/gen-mapping-0.3.3" 90664 - sources."@jridgewell/resolve-uri-3.1.1" 90665 - sources."@jridgewell/set-array-1.1.2" 90666 - sources."@jridgewell/sourcemap-codec-1.4.15" 90667 - sources."@jridgewell/trace-mapping-0.3.19" 90668 - sources."@nodelib/fs.scandir-2.1.5" 90669 - sources."@nodelib/fs.stat-2.0.5" 90670 - sources."@nodelib/fs.walk-1.2.8" 90671 - sources."agent-base-6.0.2" 90672 - sources."ansi-regex-5.0.1" 90673 - sources."ansi-styles-4.3.0" 90674 - sources."array-union-2.1.0" 90675 - sources."at-least-node-1.0.0" 90676 - sources."base64-js-1.5.1" 90677 - (sources."bl-4.1.0" // { 90678 - dependencies = [ 90679 - sources."readable-stream-3.6.2" 90680 - ]; 90681 - }) 90682 - sources."braces-3.0.2" 90683 - sources."buffer-5.7.1" 90684 - sources."chalk-4.1.2" 90685 - sources."chownr-1.1.4" 90686 - sources."cliui-7.0.4" 90687 - sources."color-convert-2.0.1" 90688 - sources."color-name-1.1.4" 90689 - sources."core-util-is-1.0.3" 90690 - sources."debug-4.3.4" 90691 - sources."decompress-response-6.0.0" 90692 - sources."deep-extend-0.6.0" 90693 - sources."detect-libc-2.0.2" 90694 - sources."dir-glob-3.0.1" 90695 - sources."emoji-regex-8.0.0" 90696 - sources."encoding-0.1.13" 90697 - sources."end-of-stream-1.4.4" 90698 - sources."escalade-3.1.1" 90699 - sources."expand-template-2.0.3" 90700 - sources."fast-glob-3.3.1" 90701 - sources."fastq-1.15.0" 90702 - sources."fill-range-7.0.1" 90703 - sources."from2-2.3.0" 90704 - sources."fs-constants-1.0.0" 90705 - sources."fs-extra-9.1.0" 90706 - sources."function-bind-1.1.1" 90707 - sources."get-caller-file-2.0.5" 90708 - sources."github-from-package-0.0.0" 90709 - sources."glob-parent-5.1.2" 90710 - sources."globby-11.1.0" 90711 - sources."graceful-fs-4.2.11" 90712 - sources."growly-1.3.0" 90713 - sources."has-1.0.3" 90714 - sources."has-flag-4.0.0" 90715 - sources."https-proxy-agent-5.0.1" 90716 - sources."iconv-lite-0.6.3" 90717 - sources."ieee754-1.2.1" 90718 - sources."ignore-5.2.4" 90719 - sources."inherits-2.0.4" 90720 - sources."ini-1.3.8" 90721 - sources."into-stream-6.0.0" 90722 - sources."is-core-module-2.9.0" 90723 - sources."is-docker-2.2.1" 90724 - sources."is-extglob-2.1.1" 90725 - sources."is-fullwidth-code-point-3.0.0" 90726 - sources."is-glob-4.0.3" 90727 - sources."is-number-7.0.0" 90728 - sources."is-wsl-2.2.0" 90729 - sources."isarray-1.0.0" 90730 - sources."isexe-2.0.0" 90731 - sources."jsesc-2.5.2" 90732 - sources."jsonfile-6.1.0" 90733 - sources."lru-cache-6.0.0" 90734 - sources."merge2-1.4.1" 90735 - sources."micromatch-4.0.5" 90736 - sources."mimic-response-3.1.0" 90737 - sources."minimist-1.2.8" 90738 - sources."mkdirp-classic-0.5.3" 90739 - sources."ms-2.1.2" 90740 - (sources."multistream-4.1.0" // { 90741 - dependencies = [ 90742 - sources."readable-stream-3.6.2" 90743 - ]; 90744 - }) 90745 - sources."napi-build-utils-1.0.2" 90746 - sources."node-abi-3.47.0" 90747 - sources."node-fetch-2.7.0" 90748 - sources."node-notifier-10.0.1" 90749 - sources."once-1.4.0" 90750 - sources."p-is-promise-3.0.0" 90751 - sources."path-parse-1.0.7" 90752 - sources."path-type-4.0.0" 90753 - sources."picomatch-2.3.1" 90754 - sources."pkg-fetch-3.4.2" 90755 - sources."prebuild-install-7.1.1" 90756 - sources."process-nextick-args-2.0.1" 90757 - sources."progress-2.0.3" 90758 - sources."pump-3.0.0" 90759 - sources."queue-microtask-1.2.3" 90760 - sources."rc-1.2.8" 90761 - sources."readable-stream-2.3.8" 90762 - sources."require-directory-2.1.1" 90763 - (sources."resolve-1.22.6" // { 90764 - dependencies = [ 90765 - sources."is-core-module-2.13.0" 90766 - ]; 90767 - }) 90768 - sources."reusify-1.0.4" 90769 - sources."run-parallel-1.2.0" 90770 - sources."safe-buffer-5.1.2" 90771 - sources."safer-buffer-2.1.2" 90772 - sources."semver-7.5.4" 90773 - sources."shellwords-0.1.1" 90774 - sources."simple-concat-1.0.1" 90775 - sources."simple-get-4.0.1" 90776 - sources."slash-3.0.0" 90777 - sources."stream-meter-1.0.4" 90778 - sources."string-width-4.2.3" 90779 - sources."string_decoder-1.1.1" 90780 - sources."strip-ansi-6.0.1" 90781 - sources."strip-json-comments-2.0.1" 90782 - sources."supports-color-7.2.0" 90783 - sources."supports-preserve-symlinks-flag-1.0.0" 90784 - sources."tar-fs-2.1.1" 90785 - (sources."tar-stream-2.2.0" // { 90786 - dependencies = [ 90787 - sources."readable-stream-3.6.2" 90788 - ]; 90789 - }) 90790 - sources."to-fast-properties-2.0.0" 90791 - sources."to-regex-range-5.0.1" 90792 - sources."tr46-0.0.3" 90793 - sources."tunnel-agent-0.6.0" 90794 - sources."universalify-2.0.0" 90795 - sources."util-deprecate-1.0.2" 90796 - sources."uuid-8.3.2" 90797 - sources."webidl-conversions-3.0.1" 90798 - sources."whatwg-url-5.0.0" 90799 - sources."which-2.0.2" 90800 - sources."wrap-ansi-7.0.0" 90801 - sources."wrappy-1.0.2" 90802 - sources."y18n-5.0.8" 90803 - sources."yallist-4.0.0" 90804 - sources."yargs-16.2.0" 90805 - sources."yargs-parser-20.2.9" 90806 - ]; 90807 - buildInputs = globalBuildInputs; 90808 - meta = { 90809 - description = "Package your Node.js project into an executable"; 90810 - homepage = "https://github.com/vercel/pkg#readme"; 90811 - license = "MIT"; 90812 - }; 90813 - production = true; 90814 - bypassCache = true; 90815 - reconstructLock = true; 90816 - }; 90817 90649 pm2 = nodeEnv.buildNodePackage { 90818 90650 name = "pm2"; 90819 90651 packageName = "pm2";
+7 -3
pkgs/development/python-modules/arviz/default.nix
··· 33 33 buildPythonPackage rec { 34 34 pname = "arviz"; 35 35 version = "0.16.1"; 36 - format = "setuptools"; 36 + pyproject = true; 37 37 38 - disabled = pythonOlder "3.7"; 38 + disabled = pythonOlder "3.9"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "arviz-devs"; 42 - repo = pname; 42 + repo = "arviz"; 43 43 rev = "refs/tags/v${version}"; 44 44 hash = "sha256-kixWGj0M0flTq5rXSiPB0nfZaGYRvvMBGAJpehdW8KY="; 45 45 }; ··· 93 93 "test_plot_pair" 94 94 # Array mismatch 95 95 "test_plot_ts" 96 + # The following two tests fail in a common venv-based setup. 97 + # An issue has been opened upstream: https://github.com/arviz-devs/arviz/issues/2282 98 + "test_plot_ppc_discrete" 99 + "test_plot_ppc_discrete_save_animation" 96 100 ]; 97 101 98 102 pythonImportsCheck = [
+4 -3
pkgs/development/python-modules/canopen/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "canopen"; 13 - version = "2.1.0"; 13 + version = "2.2.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-vBJrsdy2Ljs02KEuOKB7WqgxnBdFfJv+II8Lu9qQ/2E="; 20 + hash = "sha256-XxhlG5325HabmILpafk0rnc+8kpFqrwzNLWGmCBI0Iw="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 38 38 ]; 39 39 40 40 meta = with lib; { 41 + description = "CANopen stack implementation"; 41 42 homepage = "https://github.com/christiansandberg/canopen/"; 42 - description = "CANopen stack implementation"; 43 + changelog = "https://github.com/christiansandberg/canopen/releases/tag/v${version}"; 43 44 license = licenses.mit; 44 45 maintainers = with maintainers; [ sorki ]; 45 46 };
+21 -6
pkgs/development/python-modules/cmaes/default.nix
··· 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "CyberAgentAILab"; 20 - repo = pname; 20 + repo = "cmaes"; 21 21 rev = "refs/tags/v${version}"; 22 22 hash = "sha256-1mXulG/yqNwKQKDFGBh8uxIYOPSsm8+PNp++CSswc50="; 23 23 }; 24 24 25 - nativeBuildInputs = [ setuptools ]; 26 - propagatedBuildInputs = [ numpy ]; 25 + nativeBuildInputs = [ 26 + setuptools 27 + ]; 28 + 29 + propagatedBuildInputs = [ 30 + numpy 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + hypothesis 35 + pytestCheckHook 36 + ]; 27 37 28 - nativeCheckInputs = [ pytestCheckHook hypothesis ]; 38 + pythonImportsCheck = [ 39 + "cmaes" 40 + ]; 29 41 30 - pythonImportsCheck = [ "cmaes" ]; 42 + disabledTests = [ 43 + # Disable time-sensitive test 44 + "test_cma_tell" 45 + ]; 31 46 32 47 meta = with lib; { 33 48 description = "Python library for CMA evolution strategy"; 34 49 homepage = "https://github.com/CyberAgentAILab/cmaes"; 35 50 changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/v${version}"; 36 51 license = licenses.mit; 37 - maintainers = [ maintainers.bcdarwin ]; 52 + maintainers = with maintainers; [ bcdarwin ]; 38 53 }; 39 54 }
+2 -2
pkgs/development/python-modules/cocotb/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "cocotb"; 17 - version = "1.8.0"; 17 + version = "1.8.1"; 18 18 19 19 # pypi source doesn't include tests 20 20 src = fetchFromGitHub { 21 21 owner = "cocotb"; 22 22 repo = "cocotb"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-k3VizQ9iyDawfDCeE3Zup/KkyD54tFBLdQvRKsbKDLY="; 24 + hash = "sha256-B7SePM8muEL3KFVOY7+OAgQVIRvTs6k29xASK9lgCB4="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ setuptools-scm ];
+3 -8
pkgs/development/python-modules/cssutils/default.nix
··· 6 6 , fetchPypi 7 7 , setuptools 8 8 , setuptools-scm 9 - , importlib-metadata 10 9 , cssselect 11 10 , jaraco-test 12 11 , lxml ··· 17 16 18 17 buildPythonPackage rec { 19 18 pname = "cssutils"; 20 - version = "2.7.1"; 19 + version = "2.9.0"; 21 20 22 - disabled = pythonOlder "3.7"; 21 + disabled = pythonOlder "3.8"; 23 22 24 23 format = "pyproject"; 25 24 26 25 src = fetchPypi { 27 26 inherit pname version; 28 - hash = "sha256-NA7P2YNdId+PmFAPDfzqCu5By04Z7Lws+U8KbTbXy2w="; 27 + hash = "sha256-iUd7PRfXkOl7n7Te9wh2cGEFV5Wq5vfIKuMulnyb5M0="; 29 28 }; 30 29 31 30 nativeBuildInputs = [ 32 31 setuptools 33 32 setuptools-scm 34 - ]; 35 - 36 - propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ 37 - importlib-metadata 38 33 ]; 39 34 40 35 nativeCheckInputs = [
+4 -5
pkgs/development/python-modules/datasette/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "datasette"; 32 - version = "0.64.4"; 32 + version = "0.64.5"; 33 33 format = "setuptools"; 34 34 35 - disabled = pythonOlder "3.7"; 35 + disabled = pythonOlder "3.8"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "simonw"; 39 39 repo = pname; 40 40 rev = "refs/tags/${version}"; 41 - hash = "sha256-6zZgbUKszSo13qmrWKo5UAPqS/QaS8omoTJQgWFfULk="; 41 + hash = "sha256-cCzvltq3DFbfRp0gO8RQxGUwBtYJcJoeYHIz06FA7vM="; 42 42 }; 43 43 44 44 postPatch = '' 45 45 substituteInPlace setup.py \ 46 - --replace '"pytest-runner"' "" \ 47 - --replace "click-default-group-wheel>=1.2.2" "click-default-group" 46 + --replace '"pytest-runner"' " 48 47 ''; 49 48 50 49 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/deal-solver/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "deal-solver"; 14 - version = "0.1.1"; 14 + version = "0.1.2"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "life4"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-LXBAWbm8fT/jYNbzB95YeBL9fEknMNJvkTRMbc+nf6c="; 23 + hash = "sha256-DAOeQLFR/JED32uJSW7W9+Xx5f1Et05W8Fp+Vm7sfZo="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 53 53 meta = with lib; { 54 54 description = "Z3-powered solver (theorem prover) for deal"; 55 55 homepage = "https://github.com/life4/deal-solver"; 56 + changelog = "https://github.com/life4/deal-solver/releases/tag/${version}"; 56 57 license = licenses.mit; 57 58 maintainers = with maintainers; [ gador ]; 58 59 };
+2 -2
pkgs/development/python-modules/django-phonenumber-field/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "django-phonenumber-field"; 15 - version = "7.1.0"; 15 + version = "7.2.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "stefanfoulis"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-Ey/EuP3WzoGcPPJlDg97cznU5dqDPBLX/aEGPdBm9Fc="; 24 + hash = "sha256-QEmwCdSiaae7mhmCPcV5F01f1GRxmIur3tyhv0XK7I4="; 25 25 }; 26 26 27 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/etils/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "etils"; 31 - version = "1.4.1"; 31 + version = "1.5.1"; 32 32 format = "pyproject"; 33 33 34 34 disabled = pythonOlder "3.8"; 35 35 36 36 src = fetchPypi { 37 37 inherit pname version; 38 - hash = "sha256-Uxk7V7KP8UxO4rJ/yh0JxME1bOuTJLQW6dnC7vX239s="; 38 + hash = "sha256-tTDA0bLtG42hrzZ9S5eJHmgKakZY1BkBgyELu7jPH7k="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+7 -3
pkgs/development/python-modules/fakeredis/default.nix
··· 5 5 , hypothesis 6 6 , lupa 7 7 , poetry-core 8 + , pybloom-live 8 9 , pytest-asyncio 10 + , pytest-mock 9 11 , pytestCheckHook 10 - , pytest-mock 11 12 , pythonOlder 12 13 , redis 13 14 , six ··· 16 17 17 18 buildPythonPackage rec { 18 19 pname = "fakeredis"; 19 - version = "2.18.1"; 20 + version = "2.19.0"; 20 21 format = "pyproject"; 21 22 22 23 disabled = pythonOlder "3.7"; ··· 25 26 owner = "dsoftwareinc"; 26 27 repo = "fakeredis-py"; 27 28 rev = "refs/tags/v${version}"; 28 - hash = "sha256-XxQGkcwWesPS/N31t04FDq6w773OZnLVTWB42dY4AGA="; 29 + hash = "sha256-EFgd7NnHcA4T/BZZUR/z3Z4JxA0dWricasKyJAaDsHc="; 29 30 }; 30 31 31 32 nativeBuildInputs = [ ··· 51 52 ]; 52 53 aioredis = [ 53 54 aioredis 55 + ]; 56 + bf = [ 57 + pybloom-live 54 58 ]; 55 59 }; 56 60
+2 -2
pkgs/development/python-modules/formulae/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "formulae"; 14 - version = "0.5.0"; 14 + version = "0.5.1"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "bambinos"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-WDWpyrHXGBfheE0m5I9K+Dk1urXRMY6yoenN3OaZogM="; 23 + hash = "sha256-nmqGdXqsesRhR06FDS5t64C6+Bz1B97W+PkHrfV7Qmg="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/galois/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "galois"; 16 - version = "0.3.5"; 16 + version = "0.3.6"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "mhostetter"; 23 23 repo = "galois"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-4eYDaQwjnYCTnobXRtFrToRyxxH2N2n9sh8z7oPC2Wc="; 25 + hash = "sha256-Lt55HUTBmrg0IX9oWUdh5zyxccViKq0X+9bhDEgUZjQ="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/globus-sdk/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "globus-sdk"; 15 - version = "3.28.0"; 15 + version = "3.29.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "globus"; 22 22 repo = "globus-sdk-python"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-mKtqfEpnWftpGReaUrmXf3LftZnMtEizPi4RbIwgnUM="; 24 + hash = "sha256-s5o7vp7D/b73QQyIebrFT2zlhpJKYQDDXpgmDgN0+Nk="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "hahomematic"; 21 - version = "2023.10.10"; 21 + version = "2023.10.11"; 22 22 format = "pyproject"; 23 23 24 24 disabled = pythonOlder "3.11"; ··· 27 27 owner = "danielperna84"; 28 28 repo = pname; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-F7bfrfWRZLHEsYPcAFG9QG4vaUT69mvF4A2BN+cPd48="; 30 + hash = "sha256-9vKXIvCLmdKS+DIR6OY7/gnDdqWZfmi9FOGpbqCMCqA="; 31 31 }; 32 32 33 33 postPatch = ''
-43
pkgs/development/python-modules/hglib/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, fetchpatch, substituteAll, python, nose, mercurial }: 2 - 3 - buildPythonPackage rec { 4 - pname = "python-hglib"; 5 - version = "2.6.1"; 6 - 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2"; 10 - }; 11 - 12 - patches = [ 13 - (substituteAll { 14 - src = ./hgpath.patch; 15 - hg = "${mercurial}/bin/hg"; 16 - }) 17 - 18 - # These two patches are needed to fix the tests. 19 - # They will need to be removed on the next update. 20 - (fetchpatch { 21 - url = "https://www.mercurial-scm.org/repo/python-hglib/raw-rev/12e6aaef0f6e"; 22 - sha256 = "159pmhy23gqcc6rkh5jrni8fba4xbhxwcc0jf02wqr7f82kv8a7x"; 23 - }) 24 - (fetchpatch { 25 - url = "https://www.mercurial-scm.org/repo/python-hglib/raw-rev/1a318162f06f"; 26 - sha256 = "04lxfc15m3yw5kvp133xg8zv09l8kndi146xk3lnbbm07fgcnn1z"; 27 - }) 28 - ]; 29 - 30 - nativeCheckInputs = [ nose ]; 31 - 32 - checkPhase = '' 33 - ${python.interpreter} test.py --with-hg "${mercurial}/bin/hg" -v 34 - ''; 35 - 36 - meta = with lib; { 37 - description = "Mercurial Python library"; 38 - homepage = "http://selenic.com/repo/python-hglib"; 39 - license = licenses.mit; 40 - maintainers = with maintainers; [ dfoxfranke ]; 41 - platforms = platforms.all; 42 - }; 43 - }
-24
pkgs/development/python-modules/hglib/hgpath.patch
··· 1 - diff -r 2d0ec6097d78 hglib/__init__.py 2 - --- a/hglib/__init__.py Mon Apr 30 15:43:29 2018 +0900 3 - +++ b/hglib/__init__.py Tue Mar 19 23:30:01 2019 +0100 4 - @@ -1,7 +1,7 @@ 5 - import subprocess 6 - from hglib import client, util, error 7 - 8 - -HGPATH = 'hg' 9 - +HGPATH = '@hg@' 10 - 11 - def open(path=None, encoding=None, configs=None): 12 - '''starts a cmdserver for the given path (or for a repository found 13 - diff -r 2d0ec6097d78 tests/common.py 14 - --- a/tests/common.py Mon Apr 30 15:43:29 2018 +0900 15 - +++ b/tests/common.py Tue Mar 19 23:30:01 2019 +0100 16 - @@ -26,7 +26,7 @@ 17 - os.mkdir(self._testtmp) 18 - os.chdir(self._testtmp) 19 - # until we can run norepo commands in the cmdserver 20 - - os.system('hg init') 21 - + os.system('@hg@ init') 22 - self.client = hglib.open() 23 - 24 - def tearDown(self):
+2 -2
pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "ibm-cloud-sdk-core"; 14 - version = "3.16.7"; 14 + version = "3.17.2"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-qYXxR+jXjMfqrxJ62j5do33EbjfeoYSq+IeMrO14FnQ="; 21 + hash = "sha256-lIpUG/Z8pVdQnSBvWyaAxfBxhyQQDBKRSi/zr3qtSV0="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+7 -3
pkgs/development/python-modules/in-place/default.nix
··· 2 2 , fetchFromGitHub 3 3 , lib 4 4 , pytestCheckHook 5 + , pythonOlder 5 6 , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "in-place"; 10 - version = "0.5.0"; 11 + version = "1.0.0"; 11 12 format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.8"; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "jwodder"; 15 18 repo = "inplace"; 16 - rev = "v${version}"; 17 - sha256 = "1w6q3d0gqz4mxvspd08l1nhsrw6rpzv1gnyj4ckx61b24f84p5gk"; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-TfWfSb1GslzcT30/xvBg5Xui7ptp7+g89Fq/giLCoQ8="; 18 21 }; 19 22 20 23 postPatch = '' ··· 32 35 meta = with lib; { 33 36 description = "In-place file processing"; 34 37 homepage = "https://github.com/jwodder/inplace"; 38 + changelog = "https://github.com/jwodder/inplace/blob/v${version}/CHANGELOG.md"; 35 39 license = licenses.mit; 36 40 maintainers = with maintainers; [ samuela ]; 37 41 };
+2 -2
pkgs/development/python-modules/k-diffusion/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "k-diffusion"; 27 - version = "0.1.0"; 27 + version = "0.1.1"; 28 28 format = "setuptools"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 33 33 owner = "crowsonkb"; 34 34 repo = "k-diffusion"; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-jcIA0HfEnVHk9XDXPevGBw81GsXlm1Ztp8ceNirShEA="; 36 + hash = "sha256-ef4NhViHQcV+4T+GXpg+Qev5IC0Cid+XWE3sFVx7w4w="; 37 37 }; 38 38 39 39 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/meraki/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "meraki"; 11 - version = "1.37.3"; 11 + version = "1.38.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-pq/+giQwxvMey5OS8OtKH8M5fKmDuweuod6+hviY7P8="; 18 + hash = "sha256-LYwjcm4qZfzrDSujQ9eaxjPN9z0qWDSfT+IU1f32cY0="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/mkdocstrings-python/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "mkdocstrings-python"; 14 - version = "1.7.1"; 14 + version = "1.7.3"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "mkdocstrings"; 21 21 repo = "python"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-/iDDHJl+rIkgXIvzSZ6pTXEzVukz+cMV9GUow+AxNh0="; 23 + hash = "sha256-r/N2ZGqA1cYFkP4Ai8p6utIw/m+FiNBVbpL4Y0EO2ds="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/model-bakery/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "model-bakery"; 13 - version = "1.15.0"; 13 + version = "1.16.0"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 19 19 owner = "model-bakers"; 20 20 repo = "model_bakery"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-gB6lcLymkajRoeOQ70kmZVlBI7oeZgQo1VySfPGeQLQ="; 22 + hash = "sha256-pLGSrwRsbxB5no9nQr1THr9wXrtISOMqHrW+FeZ24Bw="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mplhep/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "mplhep"; 19 - version = "0.3.28"; 19 + version = "0.3.31"; 20 20 format = "pyproject"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-/7nfjIdlYoouDOI1vXdr9BSml5gpE0gad7ONAUmOCiE="; 24 + hash = "sha256-aZwazbDljRncB2p7qD95Cms0uQBU8tciUrXcKpsyVTM="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/powerline/default.nix
··· 3 3 , buildPythonPackage 4 4 , socat 5 5 , psutil 6 - , hglib 6 + , python-hglib 7 7 , pygit2 8 8 , pyuv 9 9 , i3ipc ··· 26 26 propagatedBuildInputs = [ 27 27 socat 28 28 psutil 29 - hglib 29 + python-hglib 30 30 pygit2 31 31 pyuv 32 32 ] ++ lib.optionals (!stdenv.isDarwin) [ i3ipc ];
+2 -2
pkgs/development/python-modules/shodan/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "shodan"; 15 - version = "1.30.0"; 15 + version = "1.30.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-yWF8ZsR7h9SAHnCAtsdp7Jox2jmN7+CwR6Z5SSdDZFM="; 22 + hash = "sha256-vttujCtEWVksG8F7TUtX2rDLWKRVrVie4mpjBCQs1QU="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/rust/cargo-expand/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "cargo-expand"; 8 - version = "1.0.73"; 8 + version = "1.0.74"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dtolnay"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-GCHZcNpy4V6WF8AchWIuqIiTY36AsgvA6QjJTCeZP1U="; 14 + sha256 = "sha256-3CbI1iv8kSBJ8HFJDfCRPTyMr6KhuuVs7u96d6H5FGE="; 15 15 }; 16 16 17 - cargoHash = "sha256-+itB3byWmzzNsoxc+pqSRGTyUkFk+KM2ImjeBwTEb/E="; 17 + cargoHash = "sha256-FekLNZMR3++MTlM8yJ5RmZI4t5B6lyKRxBlupOVzUFM="; 18 18 19 19 meta = with lib; { 20 20 description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
+3 -3
pkgs/development/tools/rust/cargo-tauri/default.nix
··· 17 17 in 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "tauri"; 20 - version = "1.3.0"; 20 + version = "1.5.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "tauri-apps"; 24 24 repo = pname; 25 25 rev = "tauri-v${version}"; 26 - hash = "sha256-+Zez3dxLtcPFzrPdi+yGucr+55GDmMsaLlUZcyqprtc="; 26 + hash = "sha256-GjGaZJQ51vKlUWCCuIyyblYO0qMiQJ4n3ToGwUiRZw0="; 27 27 }; 28 28 29 29 # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at 30 30 # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202 31 31 sourceRoot = "${src.name}/tooling/cli"; 32 32 33 - cargoHash = "sha256-ErUzhmPA2M1H4B4SrEt4FRWHcWLA1UzQqVA1gkrmdJQ="; 33 + cargoHash = "sha256-Uneg+d5xM1ez1PtHHdAwOfUQckds0ZY+12N9wKsKLw0="; 34 34 35 35 buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ glibc libsoup cairo gtk3 webkitgtk ] 36 36 ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
+18 -7
pkgs/development/tools/wlcs/default.nix
··· 2 2 , lib 3 3 , gitUpdater 4 4 , fetchFromGitHub 5 + , testers 5 6 , cmake 6 7 , pkg-config 7 8 , boost 8 9 , gtest 9 10 , wayland 11 + , wayland-scanner 10 12 }: 11 13 12 - stdenv.mkDerivation rec { 14 + stdenv.mkDerivation (finalAttrs: { 13 15 pname = "wlcs"; 14 - version = "1.6.0"; 16 + version = "1.6.1"; 15 17 16 18 src = fetchFromGitHub { 17 19 owner = "MirServer"; 18 20 repo = "wlcs"; 19 - rev = "v${version}"; 20 - hash = "sha256-+YM5dT45p9wk0gJeATmhWDFJJMaUdcTfw8GLS/vMkw4="; 21 + rev = "v${finalAttrs.version}"; 22 + hash = "sha256-YYrhcN1BSJISn/7lxu7Db5YaOK+okdHVJuMwqSDzAIU="; 21 23 }; 22 24 25 + strictDeps = true; 26 + 23 27 nativeBuildInputs = [ 24 28 cmake 25 29 pkg-config 30 + wayland-scanner 26 31 ]; 27 32 28 33 buildInputs = [ ··· 31 36 wayland 32 37 ]; 33 38 34 - passthru.updateScript = gitUpdater { 35 - rev-prefix = "v"; 39 + passthru = { 40 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 41 + updateScript = gitUpdater { 42 + rev-prefix = "v"; 43 + }; 36 44 }; 37 45 38 46 meta = with lib; { ··· 57 65 license = licenses.gpl3Only; 58 66 maintainers = with maintainers; [ OPNA2608 ]; 59 67 platforms = platforms.linux; 68 + pkgConfigModules = [ 69 + "wlcs" 70 + ]; 60 71 }; 61 - } 72 + })
+4 -2
pkgs/games/chiaki4deck/default.nix
··· 15 15 , udev 16 16 , hidapi 17 17 , fftw 18 + , speexdsp 18 19 }: 19 20 20 21 mkDerivation rec { 21 22 pname = "chiaki4deck"; 22 - version = "1.3.4"; 23 + version = "1.4.0"; 23 24 24 25 src = fetchFromGitHub { 25 26 owner = "streetpea"; 26 27 repo = pname; 27 28 rev = "v${version}"; 28 - hash = "sha256-ayU2mYDpgGMgDK5AI5gwgu6h+YLKPG7P32ECWdL5wA4="; 29 + hash = "sha256-udSGtpBUbxEZU9l+jLmUWJbkaCxKGoPuKAaYVmEEezk="; 29 30 fetchSubmodules = true; 30 31 }; 31 32 ··· 50 51 fftw 51 52 libevdev 52 53 udev 54 + speexdsp 53 55 ]; 54 56 55 57 meta = with lib; {
+3 -3
pkgs/servers/bloat/default.nix
··· 6 6 7 7 buildGoModule { 8 8 pname = "bloat"; 9 - version = "unstable-2023-09-24"; 9 + version = "unstable-2023-10-02"; 10 10 11 11 src = fetchgit { 12 12 url = "git://git.freesoftwareextremist.com/bloat"; 13 - rev = "8e3999fc3d9761f9ce71c35a7154a77c251caa66"; 14 - hash = "sha256-+JHBTYZETAmxUxb2SBMIuZ5/StU7mHQceHbjDmta+Kw="; 13 + rev = "b83a00aa2cdabfc20c162379c885caac0110e167"; 14 + hash = "sha256-E04XP3frzwaRNoc8HM96buODtGMs/nBJ7BDJD5VX40g="; 15 15 }; 16 16 17 17 vendorHash = null;
+5 -5
pkgs/servers/radarr/default.nix
··· 10 10 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 11 11 12 12 hash = { 13 - x64-linux_hash = "sha256-Y08mLq/lpWqwcffPczL+ntS7CWLmOgz9irfbhIKbL5A="; 14 - arm64-linux_hash = "sha256-gswwyq9ZIObwrcs6PABhcN4saF8VDQHLpP2trAnVSck="; 15 - x64-osx_hash = "sha256-MxlUQLXiCg02AMTYsAWrM4l3IfgCRIPoU0cgwT8S98g="; 16 - arm64-osx_hash = "sha256-mZqP5hCJqSBY7BDooa+FGi6cdEey9DqVMV8fhp9/2IM="; 13 + x64-linux_hash = "sha256-QL2bWIHT0FM3KohjtihWQhg/SqSGmOR/j/QNuL5cFls="; 14 + arm64-linux_hash = "sha256-FDDt6to7PUEn4dhy13YtHIhW/KeEXNJjK9VXrzRJ+WM="; 15 + x64-osx_hash = "sha256-uT4GuyIyIcodYHcqfmBkQ3PBqdQAsxc5Lk6XR3HHSR0="; 16 + arm64-osx_hash = "sha256-cAt0pN/ak/0gl2OqDPp2vh5l5TyQvFWnQlGRQjknyC8="; 17 17 }."${arch}-${os}_hash"; 18 18 19 19 in stdenv.mkDerivation rec { 20 20 pname = "radarr"; 21 - version = "4.7.5.7809"; 21 + version = "5.0.3.8127"; 22 22 23 23 src = fetchurl { 24 24 url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz";
+3 -3
pkgs/servers/sozu/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "sozu"; 14 - version = "0.15.5"; 14 + version = "0.15.6"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "sozu-proxy"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-EKp+BR1x98BFDl4d6cCwBlldF6NT66SfrchNvyasI0s="; 20 + hash = "sha256-8JvSVqU8JSf7VrHYxKTZWsX59gMW7eRg4WHrvemhUNU="; 21 21 }; 22 22 23 - cargoHash = "sha256-8uiMQPXhZyk3YteTQfxzFIt9xlJzvogUy+WqsHBzmhk="; 23 + cargoHash = "sha256-f4tteNovor8/YS71SbpD0GlHXEHfLmZmOLxn8impRj8="; 24 24 25 25 nativeBuildInputs = [ protobuf ]; 26 26
+2 -2
pkgs/tools/admin/acme-sh/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "acme.sh"; 18 - version = "3.0.6"; 18 + version = "3.0.7"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "acmesh-official"; 22 22 repo = "acme.sh"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-4Chqdr4a9+T+/o1vCPY5xMREoYl0HxY3OlGRD86ulGs="; 24 + hash = "sha256-ymj97aWWOLen7YEfG72N2nyxlwuB/Su4+pgpWUuckgc="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/fastfetch/default.nix
··· 42 42 43 43 stdenv.mkDerivation (finalAttrs: { 44 44 pname = "fastfetch"; 45 - version = "2.1.0"; 45 + version = "2.1.1"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "fastfetch-cli"; 49 49 repo = "fastfetch"; 50 50 rev = finalAttrs.version; 51 - hash = "sha256-4FkBq7UxwZ2YuC4t/siC3CXqyP3Lff4jW3xheAQ9M6o="; 51 + hash = "sha256-I1Ej7VVhzerQowGIOmxE6pDdWbOU7x35Xmia+A2ba6s="; 52 52 }; 53 53 54 54 nativeBuildInputs = [
+3 -3
pkgs/tools/misc/jfrog-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "jfrog-cli"; 8 - version = "2.48.0"; 8 + version = "2.50.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jfrog"; 12 12 repo = "jfrog-cli"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-OrJUnvDCJPQcz3doY8bn8O1jA6boNs+7ReN8/0OF6vU="; 14 + hash = "sha256-ZQsc1Far3x4WySbSU5wZXN6acirgVu467BGyjbcT5Ks="; 15 15 }; 16 16 17 - vendorHash = "sha256-uwfiRLsT0o2gDozHrMq6iY9tg1sYK721lLv3UtBCe78="; 17 + vendorHash = "sha256-KCFLM8qElbPbmLBCzyThUiqv/BLXsG3eauCBjahMMYk="; 18 18 19 19 postInstall = '' 20 20 # Name the output the same way as the original build script does
+2 -2
pkgs/tools/misc/moar/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "moar"; 5 - version = "1.17.1"; 5 + version = "1.18.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "walles"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-ifpPShDI0JNkFXrrZEsQ+bvHMe7AgaZm30dnvsj8vDA="; 11 + hash = "sha256-E0wJ0P4ofkfKU6HKEZ+D6fT7EMKlHrGioEMJPi9T+9E="; 12 12 }; 13 13 14 14 vendorHash = "sha256-aFCv6VxHD1bOLhCHXhy4ubik8Z9uvU6AeqcMqIZI2Oo=";
+2 -2
pkgs/tools/misc/yutto/default.nix
··· 9 9 10 10 buildPythonApplication rec { 11 11 pname = "yutto"; 12 - version = "2.0.0b28"; 12 + version = "2.0.0b30"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.9"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-jN9KDQjEaTf7BUDtGd07W3TtijRKzD+StMReLmX4QI0="; 19 + hash = "sha256-QQExmnpn+CgNRyV/cQbYpgGCM2r8DzOMdNzgN+DvSos="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -3
pkgs/tools/security/bitwarden/cli.nix
··· 12 12 buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_18; }; 13 13 in buildNpmPackage' rec { 14 14 pname = "bitwarden-cli"; 15 - version = "2023.9.0"; 15 + version = "2023.9.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "bitwarden"; 19 19 repo = "clients"; 20 20 rev = "cli-v${version}"; 21 - hash = "sha256-s9jj1qmh4aCvtVY85U4AU7pcc8ABu9essFYqwf64dns="; 21 + hash = "sha256-1dyrjEhcZDrA89rEvGg16f/MI8oNPPF4lwgGQQF9huE="; 22 22 }; 23 23 24 - npmDepsHash = "sha256-0q3XoC87kfC2PYMsNse4DV8M8OXjckiLTdN3LK06lZY="; 24 + npmDepsHash = "sha256-7GgjrH5s09zwGhWPOYHLTIMSKYndq+cAG06jZ0IySOQ="; 25 25 26 26 nativeBuildInputs = [ 27 27 python3
+3 -3
pkgs/tools/security/kestrel/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "kestrel"; 9 - version = "0.10.1"; 9 + version = "0.11.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "finfet"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-kEM81HIfWETVrUiqXu1+3az+Stg3GdjHE7FaxXJgNYk="; 15 + hash = "sha256-l9YYzwyi7POXbCxRmmhULO2YJauNJBfRGuXYU3uZQN4="; 16 16 }; 17 17 18 - cargoHash = "sha256-xv35oFawFLVXZS3Eum6RCo8LcVvHftfv+UvJYYmIDx4="; 18 + cargoHash = "sha256-XqyFGxTNQyY1ryTbL9/9s1WVP4bVk/zbG9xNdddLX10="; 19 19 20 20 nativeBuildInputs = [ 21 21 installShellFiles
+20 -3
pkgs/tools/system/psensor/default.nix
··· 1 - { stdenv, lib, fetchurl, pkg-config, lm_sensors, libgtop, libatasmart, gtk3 2 - , libnotify, udisks2, libXNVCtrl, wrapGAppsHook 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , pkg-config 5 + , lm_sensors 6 + , libgtop 7 + , libatasmart 8 + , gtk3 9 + , libnotify 10 + , udisks2 11 + , libXNVCtrl 12 + , wrapGAppsHook 13 + , libappindicator 3 14 }: 4 15 5 16 stdenv.mkDerivation rec { ··· 15 26 nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 16 27 17 28 buildInputs = [ 18 - lm_sensors libgtop libatasmart gtk3 libnotify udisks2 29 + lm_sensors 30 + libgtop 31 + libatasmart 32 + gtk3 33 + libnotify 34 + udisks2 35 + libappindicator 19 36 ]; 20 37 21 38 preConfigure = ''
+2 -2
pkgs/tools/system/ttop/default.nix
··· 2 2 3 3 nimPackages.buildNimPackage (finalAttrs: { 4 4 pname = "ttop"; 5 - version = "1.2.5"; 5 + version = "1.2.6"; 6 6 nimBinOnly = true; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "inv2004"; 10 10 repo = "ttop"; 11 11 rev = "v${finalAttrs.version}"; 12 - hash = "sha256-GMGGkpBX+pmZ+TSDRs2N3H4Bwa3oXSDo9vM192js7Ww="; 12 + hash = "sha256-rTvEL9MkRJuynu50g8TXitYKnfXsa6PpkfEDaX0nfJs="; 13 13 }; 14 14 15 15 buildInputs = with nimPackages; [ asciigraph illwill jsony parsetoml zippy ];
+1
pkgs/top-level/python-aliases.nix
··· 177 177 hangups = throw "hangups was removed because Google Hangouts has been shut down"; # added 2023-02-13 178 178 hbmqtt = throw "hbmqtt was removed because it is no longer maintained"; # added 2021-11-07 179 179 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 180 + hglib = python-hglib; # added 2023-10-13 180 181 HTSeq = htseq; # added 2023-02-19 181 182 hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29 182 183 ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08
-2
pkgs/top-level/python-packages.nix
··· 4939 4939 4940 4940 hg-git = callPackage ../development/python-modules/hg-git { }; 4941 4941 4942 - hglib = callPackage ../development/python-modules/hglib { }; 4943 - 4944 4942 hickle = callPackage ../development/python-modules/hickle { }; 4945 4943 4946 4944 hid = callPackage ../development/python-modules/hid {