summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:44:21 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:44:21 -0600
commite5b082fc7bb6c14a977782beb88cfc31e5e7c1bb (patch)
tree0430d77ae574b1eb74bb5ba09b91015b800e6866 /pkgs/applications
parent540d028bf5fec0a24ed088f84a98f4724d729fa1 (diff)
downloadnixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar.gz
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar.bz2
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar.lz
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar.xz
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.tar.zst
nixpkgs-e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb.zip
melpa-packages: fix evaluation error
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/melpa-packages.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index af5a2c220c5..b39e3d04127 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -24,13 +24,14 @@ let
   mkPackage = self: name: recipe:
     let drv =
           { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab
-          , fetchgit, fetchhg }:
+          , fetchgit, fetchhg, fetchsvn }:
           let
             unknownFetcher =
               abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
             fetch =
               {
-                inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg;
+                inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
+                        fetchsvn;
               }."${recipe.fetch.tag}"
               or unknownFetcher;
             args = builtins.removeAttrs recipe.fetch [ "tag" ];