melpaStablePackages: don't import all of pkgs
This commit is contained in:
parent
28af093438
commit
a338959da6
|
@ -1,8 +1,8 @@
|
||||||
pkgs: with pkgs;
|
{ lib }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
inherit (stdenv.lib) makeScope mapAttrs;
|
inherit (lib) makeScope mapAttrs;
|
||||||
|
|
||||||
json = builtins.readFile ./melpa-stable-packages.json;
|
json = builtins.readFile ./melpa-stable-packages.json;
|
||||||
manifest = builtins.fromJSON json;
|
manifest = builtins.fromJSON json;
|
||||||
|
|
|
@ -11652,8 +11652,9 @@ let
|
||||||
inherit fetchurl lib stdenv texinfo;
|
inherit fetchurl lib stdenv texinfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
melpaStablePackages =
|
melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix {
|
||||||
import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs;
|
inherit lib;
|
||||||
|
};
|
||||||
|
|
||||||
melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix {
|
melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix {
|
||||||
inherit lib;
|
inherit lib;
|
||||||
|
|
Loading…
Reference in New Issue