nix-doom-emacs-unstraightened/flake.nix

122 lines
4.6 KiB
Nix
Raw Normal View History

2024-04-28 12:26:05 +10:00
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
{
inputs = {
# Default to reusing the system's emacs package if it has nixpkgs in the system flake registry.
nixpkgs.url = "nixpkgs";
systems.url = "github:nix-systems/default";
doomemacs = {
url = "github:doomemacs/doomemacs";
flake = false;
};
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs = {
# These should be unused, but let's unset them to make that explicit.
nixpkgs-stable.follows = "";
nixpkgs.follows = "";
};
};
};
2024-05-07 23:02:59 +10:00
outputs = { self, systems, doomemacs, nixpkgs, emacs-overlay, ... }: let
perSystemPackages = let
eachSystem = nixpkgs.lib.genAttrs (import systems);
in
f: eachSystem (system: f nixpkgs.legacyPackages.${system});
doomFromPackages = pkgs: args: let
# Hack to avoid pkgs.extend having to instantiate an additional nixpkgs.
#
# We need emacsPackagesFor from the overlay, but neither the overlay itself
# (it only uses "super", not "self") nor us actually needs anything overlaid
# on nixpkgs. So we can call the overlay and pass emacsPackagesFor through
# directly instead of having pkgs.callPackage do it.
inherit (emacs-overlay.overlays.package {} pkgs) emacsPackagesFor;
mergedArgs = args // {
inherit emacsPackagesFor;
doomSource = doomemacs;
};
in
pkgs.callPackages self mergedArgs;
in {
checks = perSystemPackages (pkgs:
let
common = {
# TODO: drop after NixOS 24.05 release.
emacs = pkgs.emacs29;
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
};
mkDoom = args: (doomFromPackages pkgs (common // args)).doomEmacs;
2024-05-17 21:03:24 +10:00
doomTest = assertion: args: pkgs.testers.testEqualContents {
inherit assertion;
expected = pkgs.writeText "doom-expected" "Doom functions";
# Runs Doom in tmux, waiting (by polling) until its window disappears.
actual = pkgs.runCommand "interactive" {
nativeBuildInputs = [ pkgs.tmux (mkDoom args) ];
} ''
tmux new-session -s doom-testing -d
tmux new-window -n doom-window doom-emacs
for ((i = 0; i < 100; i++)); do
tmux list-windows -a | grep -q doom-window || break
sleep .1
done
tmux kill-session -t doom-testing
'';
};
in {
minimal = mkDoom { doomDir = ./doomdirs/minimal; };
minimalEmacs = (doomFromPackages pkgs (common // {
doomDir = ./doomdirs/minimal;
})).emacsWithDoom;
full = mkDoom {
full = true;
doomDir = ./doomdirs/minimal;
2024-05-07 23:24:37 +10:00
};
example = mkDoom { doomDir = ./doomdirs/example; };
example-without-loader = mkDoom {
doomDir = ./doomdirs/example;
profileName = "";
2024-05-07 23:24:37 +10:00
};
2024-05-17 21:03:24 +10:00
interactive = doomTest "minimal doom starts" { doomDir = ./doomdirs/test; };
interactive-without-loader = doomTest "minimal doom (without loader) starts" {
doomDir = ./doomdirs/test;
profileName = "";
};
});
packages = perSystemPackages (pkgs: {
doom-example = (doomFromPackages pkgs {
# TODO: drop after NixOS 24.05 release.
emacs = pkgs.emacs29;
doomDir = ./doomdirs/example;
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
}).doomEmacs;
doom-example-without-loader = (doomFromPackages pkgs {
# TODO: drop after NixOS 24.05 release.
emacs = pkgs.emacs29;
doomDir = ./doomdirs/example;
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
profileName = "";
}).doomEmacs;
});
overlays.default = final: prev: {
doomEmacs = args: (doomFromPackages final args).doomEmacs;
emacsWithDoom = args: (doomFromPackages final args).emacsWithDoom;
};
hmModule = import ./home-manager.nix {
inherit doomFromPackages;
};
};
}