melpa-stable-packages: include fetchFromGitHub
This commit is contained in:
parent
b72161608a
commit
be568d55da
1 changed files with 2 additions and 2 deletions
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue