summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:08:17 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-19 09:32:24 -0600
commitbe568d55da5d847985d2895a29f3227bd4a19018 (patch)
tree3a7287287ac24c1dad173d31c3a022889fb8aad2 /pkgs/applications
parentb72161608a20419199ea6a555ce762489fe19cbd (diff)
downloadnixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar.gz
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar.bz2
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar.lz
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar.xz
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.tar.zst
nixpkgs-be568d55da5d847985d2895a29f3227bd4a19018.zip
melpa-stable-packages: include fetchFromGitHub
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
index d65ce4db80e..8a8b7d4eb19 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -25,13 +25,13 @@ let
 
   mkPackage = self: name: recipe:
     let drv =
-          { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }:
+          { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }:
           let
             unknownFetcher =
               abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
             fetch =
               {
-                inherit fetchurl fetchcvs fetchgit fetchhg;
+                inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg;
               }."${recipe.fetch.tag}"
               or unknownFetcher;
             args = builtins.removeAttrs recipe.fetch [ "tag" ];