-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
35 lines (30 loc) · 981 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
35
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) lib;
in {
formatter = pkgs.nixfmt;
packages.eglot-semantic-tokens = with pkgs.emacs.pkgs;
trivialBuild {
pname = "eglot-semantic-tokens";
version = "master";
src = ./eglot-semantic-tokens.el;
meta = with lib; {
description = "eglot semantic tokens support";
homepage =
"https://codeberg.org/eownerdead/eglot-semantic-tokens";
license = licenses.gpl3Only;
platforms = platforms.all;
};
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [ editorconfig-checker nixfmt ];
};
});
}