forked from nix-community/emacs-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
34 lines (30 loc) · 874 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
description = "Bleeding edge Emacs overlay";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs =
{ self
, nixpkgs
, flake-utils
}: {
# self: super: must be named final: prev: for `nix flake check` to be happy
overlay = final: prev:
import ./default.nix final prev;
} // flake-utils.lib.eachDefaultSystem (system: (
let
pkgs = import nixpkgs {
inherit system;
config.allowAliases = false;
overlays = [ self.overlay ];
};
inherit (pkgs) lib;
overlayAttrs = builtins.attrNames (import ./. pkgs pkgs);
in
{
packages =
let
drvAttrs = builtins.filter (n: lib.isDerivation pkgs.${n}) overlayAttrs;
in
lib.listToAttrs (map (n: lib.nameValuePair n pkgs.${n}) drvAttrs);
}
));
}