summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:49:57 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:49:57 -0600
commit274678b38cee731d19a1d33d2581a84f3830d1ef (patch)
tree7f2a04c1544a8a5b9b3808b557a495e3cfba0e0d /pkgs/applications
parent3fbd697b24fd869addb2cc5660c77f6ea0d2a5ee (diff)
downloadnixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar.gz
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar.bz2
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar.lz
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar.xz
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.tar.zst
nixpkgs-274678b38cee731d19a1d33d2581a84f3830d1ef.zip
melpa-stable-packages: fix evaluation error
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
index ce9dc42554e..aa940016b5e 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -25,15 +25,15 @@ let
 
   mkPackage = self: name: recipe:
     let drv =
-          { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab
-          , fetchgit, fetchhg, fetchsvn }:
+          { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab
+          , fetchgit, fetchhg, fetchsvn, fetchurl }:
           let
             unknownFetcher =
               abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
             fetch =
               {
-                inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
-                        fetchsvn;
+                inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
+                        fetchsvn fetchurl;
               }."${recipe.fetch.tag}"
               or unknownFetcher;
             args = builtins.removeAttrs recipe.fetch [ "tag" ];