melpa-stable-packages: use recipeFile

This commit is contained in:
Thomas Tuegel 2015-12-29 13:24:42 -06:00
parent 1d8e3db9ff
commit c266de63ee

View file

@ -38,10 +38,14 @@ let
or unknownFetcher;
args = builtins.removeAttrs recipe.fetch [ "tag" ];
src = fetch args;
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}";
inherit (recipe.recipe) sha256;
};
in melpaBuild {
pname = name;
inherit (recipe) version;
inherit src;
inherit recipeFile src;
packageRequires =
let lookupDep = d: self."${d}" or null;
in map lookupDep recipe.deps;