mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
76 lines
2.0 KiB
Nix
76 lines
2.0 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
buildNpmPackage,
|
|
electron,
|
|
nodejs,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "antares";
|
|
version = "0.7.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "antares-sql";
|
|
repo = "antares";
|
|
rev = "v${version}";
|
|
hash = "sha256-3zgr3Eefx3WDUW9/1NOaneUbFy3GTnJ3tGgivtW1K/g=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-WJ5HVVa4rEOsvr52L/OGk+vlxRiKLJTxWmUnpN1FnbY=";
|
|
|
|
patches = [
|
|
# Since version 0.7.28, package-lock is not updated properly so this patch update it to be able to build the package
|
|
# This patch will probably be removed in the next version
|
|
# If it does not build without it, you just need to do a npm update in the antares project and copy the patch
|
|
./npm-lock.patch
|
|
];
|
|
|
|
buildInputs = [ nodejs ];
|
|
|
|
nativeBuildInputs = [ copyDesktopItems ];
|
|
|
|
npmBuildScript = "compile";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
npmInstallHook
|
|
cp -rf dist/* $out/lib/node_modules/antares
|
|
find -name "*.ts" | xargs rm -f
|
|
makeWrapper ${lib.getExe electron} $out/bin/antares \
|
|
--add-flags $out/lib/node_modules/antares/main.js
|
|
runHook postInstall
|
|
|
|
# Install icon files
|
|
mkdir -pv $out/share/icon/
|
|
cp assets/icon.ico $out/share/icon/antares.ico
|
|
'';
|
|
|
|
npmFlags = [ "--legacy-peer-deps" ];
|
|
env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
|
|
env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1";
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = pname;
|
|
desktopName = "Antares SQL";
|
|
exec = pname;
|
|
icon = pname;
|
|
terminal = false;
|
|
type = "Application";
|
|
startupWMClass = pname;
|
|
comment = "A modern, fast and productivity driven SQL client with a focus in UX";
|
|
categories = [ "Development" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Modern, fast and productivity driven SQL client with a focus in UX";
|
|
homepage = "https://github.com/antares-sql/antares";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eymeric ];
|
|
};
|
|
}
|