summary refs log tree commit diff
path: root/pkgs/build-support/emacs
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-27 10:37:02 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-27 10:59:27 -0600
commit688c005608146110bb0ad45c5d7d0734a82d4f07 (patch)
treecda17d4a43ef43962705294cee93f838dc1b0c1b /pkgs/build-support/emacs
parent74a1b201080d98f427318765d09955ad684c0ca2 (diff)
downloadnixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar.gz
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar.bz2
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar.lz
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar.xz
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.tar.zst
nixpkgs-688c005608146110bb0ad45c5d7d0734a82d4f07.zip
melpaBuild: update package-build.el
Diffstat (limited to 'pkgs/build-support/emacs')
-rw-r--r--pkgs/build-support/emacs/melpa.nix4
-rw-r--r--pkgs/build-support/emacs/melpa2nix.el10
2 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/build-support/emacs/melpa.nix b/pkgs/build-support/emacs/melpa.nix
index 5eaa995b412..a1f10ad3143 100644
--- a/pkgs/build-support/emacs/melpa.nix
+++ b/pkgs/build-support/emacs/melpa.nix
@@ -22,8 +22,8 @@ with lib;
 let
 
   packageBuild = fetchurl {
-    url = https://raw.githubusercontent.com/milkypostman/melpa/12a862e5c5c62ce627dab83d7cf2cca6e8b56c47/package-build.el;
-    sha256 = "1nviyyprypz7nmam9rwli4yv3kxh170glfbznryrp4czxkrjjdhk";
+    url = https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/package-build.el;
+    sha256 = "1biwg2pqmmdz5iwqbjdszljazqymvgyyjcnc255nr6qz8mhnx67j";
   };
 
   fname = "${pname}-${version}";
diff --git a/pkgs/build-support/emacs/melpa2nix.el b/pkgs/build-support/emacs/melpa2nix.el
index d54e9d21e25..858ffd7593b 100644
--- a/pkgs/build-support/emacs/melpa2nix.el
+++ b/pkgs/build-support/emacs/melpa2nix.el
@@ -23,14 +23,14 @@
 
 (defun melpa2nix-package-build-archive (name version files)
   "Build a package archive for package NAME."
-  (pb/message "\n;;; %s\n" name)
+  (package-build--message "\n;;; %s\n" name)
   (let* ((start-time (current-time))
          (archive-entry (package-build-package name
                                                version
                                                files
                                                package-build-working-dir
                                                package-build-archive-dir)))
-    
-    (pb/message "Built in %.3fs, finished at %s"
-                (time-to-seconds (time-since start-time))
-                (current-time-string))))
+
+    (package-build--message "Built in %.3fs, finished at %s"
+                            (time-to-seconds (time-since start-time))
+                            (current-time-string))))