Merge pull request #255301 from linsui/pot

pot: 2.2.0 -> 2.3.0

authored by

Weijia Wang and committed by
GitHub
4b095712 2438dc06

+7 -36
+5 -34
pkgs/applications/misc/pot/Cargo.lock
··· 629 ] 630 631 [[package]] 632 - name = "cocoa" 633 - version = "0.25.0" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 636 - dependencies = [ 637 - "bitflags 1.3.2", 638 - "block", 639 - "cocoa-foundation", 640 - "core-foundation", 641 - "core-graphics 0.23.1", 642 - "foreign-types 0.5.0", 643 - "libc", 644 - "objc", 645 - ] 646 - 647 - [[package]] 648 name = "cocoa-foundation" 649 version = "0.1.1" 650 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3760 "tiny_http", 3761 "walkdir", 3762 "window-shadows", 3763 - "window-vibrancy", 3764 "windows 0.44.0", 3765 "zip", 3766 ] ··· 5080 "bitflags 1.3.2", 5081 "cairo-rs", 5082 "cc", 5083 - "cocoa 0.24.1", 5084 "core-foundation", 5085 "core-graphics 0.22.3", 5086 "crossbeam-channel", ··· 5157 "anyhow", 5158 "base64 0.21.3", 5159 "bytes", 5160 - "cocoa 0.24.1", 5161 "dirs-next", 5162 "embed_plist", 5163 "encoding_rs", ··· 5375 source = "registry+https://github.com/rust-lang/crates.io-index" 5376 checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b" 5377 dependencies = [ 5378 - "cocoa 0.24.1", 5379 "gtk", 5380 "percent-encoding", 5381 "rand 0.8.5", ··· 6280 source = "registry+https://github.com/rust-lang/crates.io-index" 6281 checksum = "29d30320647cfc3dc45554c8ad825b84831def81f967a2f7589931328ff9b16d" 6282 dependencies = [ 6283 - "cocoa 0.24.1", 6284 "objc", 6285 "raw-window-handle", 6286 "windows-sys 0.42.0", 6287 ] 6288 6289 [[package]] 6290 - name = "window-vibrancy" 6291 - version = "0.4.0" 6292 - source = "registry+https://github.com/rust-lang/crates.io-index" 6293 - checksum = "1c0a73f45692662acb5dfe1ac22f33fbd5b3db2f1ef413985b480e655b61f5ee" 6294 - dependencies = [ 6295 - "cocoa 0.25.0", 6296 - "objc", 6297 - "raw-window-handle", 6298 - "windows-sys 0.48.0", 6299 - ] 6300 - 6301 - [[package]] 6302 name = "windows" 6303 version = "0.37.0" 6304 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6665 dependencies = [ 6666 "base64 0.13.1", 6667 "block", 6668 - "cocoa 0.24.1", 6669 "core-graphics 0.22.3", 6670 "crossbeam-channel", 6671 "dunce",
··· 629 ] 630 631 [[package]] 632 name = "cocoa-foundation" 633 version = "0.1.1" 634 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3744 "tiny_http", 3745 "walkdir", 3746 "window-shadows", 3747 "windows 0.44.0", 3748 "zip", 3749 ] ··· 5063 "bitflags 1.3.2", 5064 "cairo-rs", 5065 "cc", 5066 + "cocoa", 5067 "core-foundation", 5068 "core-graphics 0.22.3", 5069 "crossbeam-channel", ··· 5140 "anyhow", 5141 "base64 0.21.3", 5142 "bytes", 5143 + "cocoa", 5144 "dirs-next", 5145 "embed_plist", 5146 "encoding_rs", ··· 5358 source = "registry+https://github.com/rust-lang/crates.io-index" 5359 checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b" 5360 dependencies = [ 5361 + "cocoa", 5362 "gtk", 5363 "percent-encoding", 5364 "rand 0.8.5", ··· 6263 source = "registry+https://github.com/rust-lang/crates.io-index" 6264 checksum = "29d30320647cfc3dc45554c8ad825b84831def81f967a2f7589931328ff9b16d" 6265 dependencies = [ 6266 + "cocoa", 6267 "objc", 6268 "raw-window-handle", 6269 "windows-sys 0.42.0", 6270 ] 6271 6272 [[package]] 6273 name = "windows" 6274 version = "0.37.0" 6275 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6636 dependencies = [ 6637 "base64 0.13.1", 6638 "block", 6639 + "cocoa", 6640 "core-graphics 0.22.3", 6641 "crossbeam-channel", 6642 "dunce",
+2 -2
pkgs/applications/misc/pot/default.nix
··· 23 24 stdenv.mkDerivation rec { 25 pname = "pot"; 26 - version = "2.2.0"; 27 28 src = fetchFromGitHub { 29 owner = "pot-app"; 30 repo = "pot-desktop"; 31 rev = version; 32 - hash = "sha256-PvbqPGT8BTHEufYp+TUSd0tTSBnTBDIYHxaeI7FEVDE="; 33 }; 34 35 sourceRoot = "${src.name}/src-tauri";
··· 23 24 stdenv.mkDerivation rec { 25 pname = "pot"; 26 + version = "2.3.0"; 27 28 src = fetchFromGitHub { 29 owner = "pot-app"; 30 repo = "pot-desktop"; 31 rev = version; 32 + hash = "sha256-KVrm7KEpIIahd/QU1HUJ2VkfECttcY5pRCHsYHS5svM="; 33 }; 34 35 sourceRoot = "${src.name}/src-tauri";