lol

Pantheon updates 2025-06-02 (#413274)

authored by

Bobby Rong and committed by
GitHub
5834b4ed 9f4e4bf5

+14 -6
+6
pkgs/applications/system/monitor/default.nix
··· 84 84 substituteInPlace meson.build --replace \ 85 85 "meson.get_compiler('c').find_library('libcurl', dirs: vapidir)" \ 86 86 "meson.get_compiler('c').find_library('libcurl', dirs: '${curl.out}/lib')" 87 + 88 + # Fix build with Vala 0.56.18 89 + # https://github.com/elementary/monitor/issues/444 90 + for i in $(find src/Resources -type f -name "*.vala"); do 91 + substituteInPlace $i --replace-warn "[Compact]" "" 92 + done 87 93 ''; 88 94 89 95 passthru = {
+4 -4
pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "switchboard-plug-onlineaccounts"; 20 - version = "8.0.1"; 20 + version = "8.0.2"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "elementary"; 24 - repo = pname; 24 + repo = "settings-onlineaccounts"; 25 25 rev = version; 26 - sha256 = "sha256-E4UAhrs+YQ47VEHMFY8PbSFvBqhqrTf4aPezeqEjdLo="; 26 + sha256 = "sha256-0dt4E2g1nX78s2WK2HO6P/fKjXcsR61KJSpulgsZHPI="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ ··· 50 50 51 51 meta = with lib; { 52 52 description = "Switchboard Online Accounts Plug"; 53 - homepage = "https://github.com/elementary/switchboard-plug-onlineaccounts"; 53 + homepage = "https://github.com/elementary/settings-onlineaccounts"; 54 54 license = licenses.gpl3Plus; 55 55 platforms = platforms.linux; 56 56 teams = [ teams.pantheon ];
+4 -2
pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix
··· 16 16 granite7, 17 17 libgee, 18 18 mutter, 19 + pantheon-wayland, 19 20 wrapGAppsHook4, 20 21 }: 21 22 22 23 stdenv.mkDerivation rec { 23 24 pname = "elementary-shortcut-overlay"; 24 - version = "8.0.1"; 25 + version = "8.1.0"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "elementary"; 28 29 repo = "shortcut-overlay"; 29 30 rev = version; 30 - sha256 = "sha256-RWFzs4rw/KC0MXkNfA178FejMbuIBh5FVox1RxmxCJA="; 31 + sha256 = "sha256-oGExG7eWiZqXEPBRuLRTnbgo3hRVKo8vO51vMBPoQb0="; 31 32 }; 32 33 33 34 nativeBuildInputs = [ ··· 48 49 gtk4 49 50 libgee 50 51 mutter # org.gnome.mutter.keybindings 52 + pantheon-wayland 51 53 ]; 52 54 53 55 passthru = {