Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit 70eca65

Browse files
committed
Tidy: Apply nixfmt
1 parent e54d25b commit 70eca65

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

builder.nix

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
let
2-
pkgs = import <nixpkgs> {};
2+
pkgs = import <nixpkgs> { };
33
emacs = pkgs.emacs;
4-
readmeBuilder = (pkgs.emacsPackagesNgGen emacs).emacsWithPackages (epkgs:
5-
(with epkgs.melpaPackages; [
6-
org-make-toc
7-
]));
8-
in
9-
pkgs.mkShell {
10-
buildInputs = [
11-
readmeBuilder
12-
];
13-
}
4+
readmeBuilder = (pkgs.emacsPackagesNgGen emacs).emacsWithPackages
5+
(epkgs: (with epkgs.melpaPackages; [ org-make-toc ]));
6+
in pkgs.mkShell { buildInputs = [ readmeBuilder ]; }

0 commit comments

Comments
 (0)