about summary refs log tree commit diff
path: root/pkgs/build-support/emacs/elpa.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/emacs/elpa.nix')
-rw-r--r--pkgs/build-support/emacs/elpa.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/build-support/emacs/elpa.nix b/pkgs/build-support/emacs/elpa.nix
new file mode 100644
index 000000000000..79a26abcb831
--- /dev/null
+++ b/pkgs/build-support/emacs/elpa.nix
@@ -0,0 +1,30 @@
+# builder for Emacs packages built for packages.el
+
+{ lib, stdenv, fetchurl, emacs, texinfo }:
+
+with lib;
+
+{ pname
+, version
+, src
+, ...
+}@args:
+
+import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
+
+  phases = "installPhase fixupPhase distPhase";
+
+  installPhase = ''
+    runHook preInstall
+
+    emacs --batch -Q -l ${./elpa2nix.el} \
+        -f elpa2nix-install-package \
+        "${src}" "$out/share/emacs/site-lisp/elpa"
+
+    runHook postInstall
+  '';
+}
+
+// removeAttrs args [ "files" "fileSpecs"
+                      "meta"
+                    ])