evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / an / antares / package.nix
blob5c23c18588a8438cbb8d30b20b2171cdea52eef3
2   fetchFromGitHub,
3   lib,
4   buildNpmPackage,
5   electron,
6   nodejs,
7   makeDesktopItem,
8   copyDesktopItems,
9   icoutils,
12 buildNpmPackage rec {
13   pname = "antares";
14   version = "0.7.29";
16   src = fetchFromGitHub {
17     owner = "antares-sql";
18     repo = "antares";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-3zgr3Eefx3WDUW9/1NOaneUbFy3GTnJ3tGgivtW1K/g=";
21   };
23   npmDepsHash = "sha256-WJ5HVVa4rEOsvr52L/OGk+vlxRiKLJTxWmUnpN1FnbY=";
25   patches = [
26     # Since version 0.7.28, package-lock is not updated properly so this patch update it to be able to build the package
27     # This patch will probably be removed in the next version
28     # If it does not build without it, you just need to do a npm update in the antares project and copy the patch
29     ./npm-lock.patch
30   ];
32   buildInputs = [ nodejs ];
34   nativeBuildInputs = [
35     copyDesktopItems
36     icoutils
37   ];
39   npmBuildScript = "compile";
41   installPhase = ''
42     runHook preInstall
43     npmInstallHook
44     cp -rf dist/* $out/lib/node_modules/antares
45     find -name "*.ts" | xargs rm -f
46     makeWrapper ${lib.getExe electron} $out/bin/antares \
47       --add-flags $out/lib/node_modules/antares/main.js
48     runHook postInstall
50     # Install icon files
51     mkdir -pv $out/share/icon/
52     icotool -x assets/icon.ico
53     cp icon_1_256x256x32.png $out/share/icon/antares.png
54   '';
56   npmFlags = [ "--legacy-peer-deps" ];
57   env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
58   env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1";
60   desktopItems = [
61     (makeDesktopItem {
62       name = pname;
63       desktopName = "Antares SQL";
64       exec = pname;
65       icon = pname;
66       terminal = false;
67       type = "Application";
68       startupWMClass = pname;
69       comment = "A modern, fast and productivity driven SQL client with a focus in UX";
70       categories = [ "Development" ];
71     })
72   ];
74   meta = {
75     description = "Modern, fast and productivity driven SQL client with a focus in UX";
76     homepage = "https://github.com/antares-sql/antares";
77     changelog = "https://github.com/antares-sql/antares/blob/v${version}/CHANGELOG.md";
78     license = lib.licenses.mit;
79     maintainers = with lib.maintainers; [ eymeric ];
80   };