1 { appimageTools, lib, fetchurl }:
4 version = "23.7.25-1690311612";
7 url = "https://github.com/sozi-projects/Sozi/releases/download/v23.07/Sozi-${version}.AppImage";
8 hash = "sha256-QHvgevv60ZTkkdt+IWaCuXt0XVnhe5Q5oROwa2LFie8=";
11 appimageContents = appimageTools.extract {
12 inherit version pname src;
14 in appimageTools.wrapType2 {
15 inherit pname version src;
17 extraPkgs = pkgs: with pkgs; [ polkit udev ];
19 extraInstallCommands = ''
20 install -m 444 -D ${appimageContents}/sozi.desktop -t $out/share/applications
21 cp -r ${appimageContents}/usr/share/icons $out/share
22 substituteInPlace $out/share/applications/sozi.desktop \
23 --replace 'Exec=AppRun' 'Exec=sozi'
27 description = "Zooming presentation editor and player";
28 homepage = "https://sozi.baierouge.fr/";
29 license = lib.licenses.mpl20;
31 maintainers = with lib.maintainers; [ srghma ];
32 platforms = [ "x86_64-linux" ];
33 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];