Commit 67d5342a authored by thattemperature's avatar thattemperature Committed by Lin Jian
Browse files

emacsPackages.eaf-map: init at 0-unstable-2025-07-04

parent 9c2d23e5
Loading
Loading
Loading
Loading
+75 −0
Original line number Diff line number Diff line
{
  # Basic
  lib,
  melpaBuild,
  fetchFromGitHub,
  # Java Script dependency
  nodejs,
  fetchNpmDeps,
  npmHooks,
  # Updater
  nix-update-script,
}:

melpaBuild (finalAttrs: {

  pname = "eaf-map";
  version = "0-unstable-2025-07-04";

  src = fetchFromGitHub {
    owner = "emacs-eaf";
    repo = "eaf-map";
    rev = "667865a9422ec71e3518833e1a13806d4f03adfb";
    hash = "sha256-UgHIzYu/K1NzTDvUn2JkEmiyDEBT9JDmlvp6xG7Nv5k=";
  };

  env.npmDeps = fetchNpmDeps {
    name = "${finalAttrs.pname}-npm-deps";
    inherit (finalAttrs) src;
    hash = "sha256-prxCFrKvC2dG9BgO3LIKDCFzjn9vFegpvuMy4Eg6Ghs=";
  };

  nativeBuildInputs = [
    nodejs
    npmHooks.npmConfigHook
  ];

  postBuild = ''
    npm run build
  '';

  files = ''
    ("*.el"
     "*.py"
     "*.js"
     "src")
  '';

  postInstall = ''
    LISPDIR=$out/share/emacs/site-lisp/elpa/${finalAttrs.ename}-${finalAttrs.melpaVersion}
    touch node_modules/.nosearch
    cp -r node_modules $LISPDIR/
    cp -r dist $LISPDIR/
  '';

  passthru = {
    updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
    eafPythonDeps =
      ps: with ps; [
        numpy
        pycurl
        python-tsp
      ];
    eafOtherDeps = [ ];
  };

  meta = {
    description = "OpenStreetMap application for the EAF";
    homepage = "https://github.com/emacs-eaf/eaf-map";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [
      thattemperature
    ];
  };

})