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