mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / hi / hifile / package.nix
blob9a565f74f10c54022c7ebdb31c45e733a99032fe
2   lib,
3   appimageTools,
4   fetchurl,
5 }:
7 let
8   version = "0.9.9.15";
9   pname = "hifile";
11   src = fetchurl {
12     url = "https://www.hifile.app/files/HiFile-${version}.AppImage";
13     hash = "sha256-Q0clcmBLWt8qDzHYjRRbwyZBSWW//yBTbRcnRjrSlzM=";
14   };
16   appimageContents = appimageTools.extractType2 {
17     inherit pname version src;
18   };
21 appimageTools.wrapType2 rec {
22   inherit pname version src;
24   extraInstallCommands = ''
25     install -m 444 -D ${appimageContents}/HiFile.desktop $out/share/applications/HiFile.desktop
26     install -m 444 -D ${appimageContents}/HiFile.png $out/share/icons/hicolor/512x512/apps/HiFile.png
27     substituteInPlace $out/share/applications/HiFile.desktop \
28       --replace-fail 'Exec=HiFile' 'Exec=${pname}'
29   '';
31   passthru.updateScript = ./update.sh;
33   meta = with lib; {
34     description = "Dual-pane graphical file manager for Windows, macOS and Linux";
35     longDescription = ''
36       HiFile is the next evolution of file managers. Its mission is to increase your productivity whenever you work with files or folders. It aims to be better in every way - more convenient, more versatile, more efficient, more elegant, more customizable, and more fun.
37     '';
38     homepage = "https://www.hifile.app/";
39     downloadPage = "https://www.hifile.app/download";
40     license = licenses.unfree;
41     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
42     maintainers = with maintainers; [ ymstnt ];
43     mainProgram = "hifile";
44     platforms = [ "x86_64-linux" ];
45   };