lol

Merge pull request #304095 from YMSTNT/update-hifile

hifile: 0.9.9.10 -> 0.9.9.11

authored by

tomberek and committed by
GitHub
c50e3d8b c25f8a85

+4 -3
+4 -3
pkgs/by-name/hi/hifile/package.nix
··· 1 1 { lib, appimageTools, fetchurl }: 2 2 3 3 let 4 - version = "0.9.9.10"; 4 + version = "0.9.9.11"; 5 5 pname = "hifile"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.hifile.app/files/HiFile-${version}.AppImage"; 9 - hash = "sha256-wNS+vaWvJsZDrgiA7RWRfkGv9Mb6BZ2qyn67jwJu61I="; 9 + hash = "sha256-T/ig5Tfo58+yMp+kOEa96+QvABg6gTaIbdy53jWucvM="; 10 10 }; 11 11 12 12 appimageContents = appimageTools.extractType2 { ··· 22 22 install -m 444 -D ${appimageContents}/HiFile.desktop $out/share/applications/HiFile.desktop 23 23 install -m 444 -D ${appimageContents}/HiFile.png $out/share/icons/hicolor/512x512/apps/HiFile.png 24 24 substituteInPlace $out/share/applications/HiFile.desktop \ 25 - --replace 'Exec=HiFile' 'Exec=${pname}' 25 + --replace-fail 'Exec=HiFile' 'Exec=${pname}' 26 26 ''; 27 27 28 28 meta = with lib; { ··· 35 35 license = licenses.unfree; 36 36 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 37 37 maintainers = with maintainers; [ ymstnt ]; 38 + mainProgram = "hifile"; 38 39 platforms = [ "x86_64-linux" ]; 39 40 }; 40 41 }