melpaBuild: don't guess archive file name
package-build can tell us exactly what the archive file name is, instead of globbing for it.
This commit is contained in:
parent
4b2303b8c9
commit
18251778c9
@ -28,8 +28,6 @@ let
|
||||
sha256 = "1biwg2pqmmdz5iwqbjdszljazqymvgyyjcnc255nr6qz8mhnx67j";
|
||||
};
|
||||
|
||||
fname = "${pname}-${version}";
|
||||
|
||||
targets = concatStringsSep " " (if files == null then fileSpecs else files);
|
||||
|
||||
defaultMeta = {
|
||||
@ -41,21 +39,23 @@ in
|
||||
import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
|
||||
inherit packageBuild;
|
||||
|
||||
buildPhase = ''
|
||||
buildPhase =
|
||||
if recipeFile == null
|
||||
then ''
|
||||
runHook preBuild
|
||||
|
||||
emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \
|
||||
${if recipeFile == null
|
||||
then
|
||||
''
|
||||
export archive=$(emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \
|
||||
-f melpa2nix-build-package \
|
||||
${pname} ${version} ${targets}
|
||||
''
|
||||
else
|
||||
${pname} ${version} ${targets})
|
||||
|
||||
runHook postBuild
|
||||
''
|
||||
else ''
|
||||
runHook preBuild
|
||||
|
||||
export archive=$(emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \
|
||||
-f melpa2nix-build-package-from-recipe \
|
||||
${recipeFile} ${version}
|
||||
''}
|
||||
${recipeFile} ${version})
|
||||
|
||||
runHook postBuild
|
||||
'';
|
||||
@ -65,7 +65,7 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
|
||||
|
||||
emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \
|
||||
-f melpa2nix-install-package \
|
||||
${fname}.* $out/share/emacs/site-lisp/elpa
|
||||
"$archive" "$out/share/emacs/site-lisp/elpa"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
@ -40,8 +40,11 @@
|
||||
version
|
||||
files
|
||||
package-build-working-dir
|
||||
package-build-archive-dir)))
|
||||
package-build-archive-dir))
|
||||
(archive-file (package-build--archive-file-name archive-entry)))
|
||||
|
||||
(progn
|
||||
(package-build--message "Built in %.3fs, finished at %s"
|
||||
(time-to-seconds (time-since start-time))
|
||||
(current-time-string))))
|
||||
(current-time-string))
|
||||
(princ (format "%s\n" archive-file)))))
|
||||
|
Loading…
x
Reference in New Issue
Block a user