emacsPackages.eaf-image-viewer: init at 0-unstable-2023-06-30

This commit is contained in:
thattemperature 2025-08-17 14:04:58 +08:00 committed by Lin Jian
parent 937683011a
commit 3a26c95db3

View File

@ -0,0 +1,63 @@
{
# Basic
lib,
melpaBuild,
fetchFromGitHub,
# Java Script dependency
nodejs,
fetchNpmDeps,
npmHooks,
# Updater
nix-update-script,
}:
melpaBuild (finalAttrs: {
pname = "eaf-image-viewer";
version = "0-unstable-2023-06-30";
src = fetchFromGitHub {
owner = "emacs-eaf";
repo = "eaf-image-viewer";
rev = "154685532ff42bd7ff4fe5a80e96e0d3d56b4ee0";
hash = "sha256-5MJibLr4UJOKl79PsDmXEZR+XFBx1xvcoykX4z/XbrI=";
};
env.npmDeps = fetchNpmDeps {
name = "${finalAttrs.pname}-npm-deps";
inherit (finalAttrs) src;
hash = "sha256-d1DVOAhYtXEzRQcUWFJE0gbHnqPRCUGibSqc/Nf3dVE=";
};
nativeBuildInputs = [
nodejs
npmHooks.npmConfigHook
];
files = ''
("*.el"
"*.py"
"*.html")
'';
postInstall = ''
LISPDIR=$out/share/emacs/site-lisp/elpa/${finalAttrs.ename}-${finalAttrs.melpaVersion}
cp -r node_modules $LISPDIR/
'';
passthru = {
updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
eafPythonDeps = ps: [ ];
eafOtherDeps = [ ];
};
meta = {
description = "Image viewer application for the EAF";
homepage = "https://github.com/emacs-eaf/eaf-image-viewer";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
thattemperature
];
};
})