streamline hash for orca slicer flatpak

This commit is contained in:
William 2025-06-08 13:20:51 -03:00
parent 1185c6bb2d
commit 8d37baaa37

View file

@ -167,38 +167,42 @@
]; ];
}; };
services.flatpak = { services.flatpak =
enable = true; let
packages = [ orcahash = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1";
### Dev Tools ### in
### Internet Browsers & Communication ### {
"app.zen_browser.zen" enable = true;
### Office & Productivity ### packages = [
### Graphics & Design ### ### Dev Tools ###
"com.boxy_svg.BoxySVG" ### Internet Browsers & Communication ###
{ "app.zen_browser.zen"
bundle = "${pkgs.fetchurl { ### Office & Productivity ###
url = "https://github.com/SoftFever/OrcaSlicer/releases/download/v2.3.0/OrcaSlicer-Linux-flatpak_V2.3.0_x86_64.flatpak"; ### Graphics & Design ###
sha256 = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1"; "com.boxy_svg.BoxySVG"
}}"; {
appId = "io.github.softfever.OrcaSlicer"; bundle = "${pkgs.fetchurl {
sha256 = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1"; url = "https://github.com/SoftFever/OrcaSlicer/releases/download/v2.3.0/OrcaSlicer-Linux-flatpak_V2.3.0_x86_64.flatpak";
} sha256 = orcahash;
### Gaming & Entertainment ### }}";
"com.github.k4zmu2a.spacecadetpinball" appId = "io.github.softfever.OrcaSlicer";
"io.itch.itch" sha256 = orcahash;
"io.mrarm.mcpelauncher" }
"org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08" ### Gaming & Entertainment ###
### System Utilities ### "com.github.k4zmu2a.spacecadetpinball"
"com.github.tchx84.Flatseal" "io.itch.itch"
"com.rustdesk.RustDesk" "io.mrarm.mcpelauncher"
"com.steamgriddb.SGDBoop" "org.freedesktop.Platform.VulkanLayer.MangoHud/x86_64/24.08"
"io.github.Foldex.AdwSteamGtk" ### System Utilities ###
### Media ### "com.github.tchx84.Flatseal"
]; "com.rustdesk.RustDesk"
uninstallUnmanaged = true; "com.steamgriddb.SGDBoop"
update.auto.enable = true; "io.github.Foldex.AdwSteamGtk"
}; ### Media ###
];
uninstallUnmanaged = true;
update.auto.enable = true;
};
} }
)) ))
]; ];