lol

Merge branch 'master' into staging-next

+14 -12
+2 -2
pkgs/applications/networking/cluster/tilt/default.nix
··· 5 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 6 6 running in development environment and try to serve assets from the 7 7 source tree, which is not there once build completes. */ 8 - version = "0.23.5"; 8 + version = "0.23.9"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "tilt-dev"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-qVybS+gRuTezX89NMWYQVWtUH6wnjB11HImejrzVHAc="; 14 + sha256 = "sha256-sxOUO5dLWBgNvbi42/aoN4YQStuNuXxWuM3WJxh1ucg="; 15 15 }; 16 16 vendorSha256 = null; 17 17
+2 -2
pkgs/development/php-packages/xdebug/default.nix
··· 3 3 buildPecl { 4 4 pname = "xdebug"; 5 5 6 - version = "3.1.2"; 7 - sha256 = "sha256-CD9r4RAN95zL3wSdr8OTC6s18OuA+bGawa2E+md5zPM="; 6 + version = "3.1.3"; 7 + sha256 = "sha256-N9CmcBlV9bNAbGwye3cCvXwhRi5lbztMziSgUlgBPU4="; 8 8 9 9 doCheck = true; 10 10 checkTarget = "test";
+4 -4
pkgs/development/tools/database/beekeeper-studio/default.nix
··· 2 2 3 3 let 4 4 pname = "beekeeper-studio"; 5 - version = "2.1.4"; 5 + version = "3.1.0"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/beekeeper-studio/beekeeper-studio/releases/download/v${version}/Beekeeper-Studio-${version}.AppImage"; 10 10 name="${pname}-${version}.AppImage"; 11 - sha512 = "1aik88wi9axv66axjmmjmlna1sp0pz92z8i2x6pq3bs0gcs4i1q3qxxbrfc14ynbpa65knimfhwzrrshchnijgdazx3qjzh8jwzfiwl"; 11 + sha512 = "sha512:1zv4fclac94fzzhgqmjgc5pllxcxajjx6yjf3zblj53cc7m4sp4ydjx3wh4db57j75x8vh7xc3q1xpq6q3sj1dafnap0j0icfi6wznk"; 12 12 }; 13 13 14 14 appimageContents = appimageTools.extractType2 { ··· 32 32 meta = with lib; { 33 33 description = "Modern and easy to use SQL client for MySQL, Postgres, SQLite, SQL Server, and more. Linux, MacOS, and Windows"; 34 34 homepage = "https://www.beekeeperstudio.io"; 35 - changelog = "https://github.com/beekeeper-studio/beekeeper-studio/releases/tag/v2.1.4"; 35 + changelog = "https://github.com/beekeeper-studio/beekeeper-studio/releases/tag/v${version}"; 36 36 license = licenses.mit; 37 - maintainers = with maintainers; [ milogert ]; 37 + maintainers = with maintainers; [ milogert alexnortung ]; 38 38 platforms = [ "x86_64-linux" ]; 39 39 }; 40 40 }
+3 -3
pkgs/development/tools/stylua/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "stylua"; 11 - version = "0.11.3"; 11 + version = "0.12.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "johnnymorganz"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-9V8vuFfyEdSzOG3Azk/e55N+Oh1VtMgcM+/PEMwJ6DI="; 17 + sha256 = "sha256-LmmOaxB7UNQQUFBYN5wNZYt9xH5wDrBbtB9QOCb3suQ="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-PrZojkObidzzVv6KwFtI1QUGj5UB5TiMmzdBKq45Ci4="; 20 + cargoSha256 = "sha256-Schaiu9XnkEfjY6D8ZT7dtCf8UN58zQ6256xeOWBi5M="; 21 21 22 22 buildFeatures = lib.optional lua52Support "lua52" 23 23 ++ lib.optional luauSupport "luau";
+3 -1
pkgs/top-level/all-packages.nix
··· 33969 33969 33970 33970 tgswitch = callPackage ../applications/networking/cluster/tgswitch {}; 33971 33971 33972 - tilt = callPackage ../applications/networking/cluster/tilt {}; 33972 + tilt = callPackage ../applications/networking/cluster/tilt { 33973 + buildGoModule = buildGo117Module; 33974 + }; 33973 33975 33974 33976 timeular = callPackage ../applications/office/timeular {}; 33975 33977