2016-01-16 23:20:06 +00:00
|
|
|
# builder for Emacs packages built for packages.el
|
|
|
|
|
2018-07-21 01:44:44 +01:00
|
|
|
{ lib, stdenv, emacs, texinfo }:
|
2016-01-16 23:20:06 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
])
|