emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / by-name / ja / jan / package.nix
bloba29891f11a1074b9c6ac3130ca4f3341f54e9d7f
1 { lib
2 , appimageTools
3 , fetchurl
4 }:
6 let
7   pname = "jan";
8   version = "0.5.13";
9   src = fetchurl {
10     url = "https://github.com/janhq/jan/releases/download/v${version}/jan-linux-x86_64-${version}.AppImage";
11     hash = "sha256-QetnD+0SCzn5Zx5v1EJNjhx8U9ueHdp+zZu/Yf77AdY=";
12   };
14   appimageContents = appimageTools.extractType2 { inherit pname version src; };
16 appimageTools.wrapType2 {
17   inherit pname version src;
19   extraInstallCommands = ''
20     install -Dm444 ${appimageContents}/jan.desktop -t $out/share/applications
21     substituteInPlace $out/share/applications/jan.desktop \
22       --replace-fail 'Exec=AppRun --no-sandbox %U' 'Exec=jan'
23     cp -r ${appimageContents}/usr/share/icons $out/share
24   '';
26   meta = {
27     changelog = "https://github.com/janhq/jan/releases/tag/v${version}";
28     description = "Jan is an open source alternative to ChatGPT that runs 100% offline on your computer";
29     homepage = "https://github.com/janhq/jan";
30     license = lib.licenses.agpl3Plus;
31     mainProgram = "jan";
32     maintainers = [ ];
33     platforms = lib.platforms.linux;
34   };