summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/header-file-mode/default.nix
blob: df3b2a56519e6b10d46593606d25e2b3e157786b (plain) (blame)
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
{ trivialBuild
, lib
, fetchFromGitHub
}:

trivialBuild {
  pname = "header-file-mode";
  version = "unstable-2022-05-25";

  src = fetchFromGitHub {
    owner = "aidalgol";
    repo = "header-file-mode";
    rev = "cf6ce33b436ae9631aece1cd30a459cb0f89d1cd";
    sha256 = "sha256-+TDJubmBc0Hl+2ms58rnOf3hTaQE3ayrIpGWl4j39GQ=";
  };

  postUnpack = ''
    sourceRoot="$sourceRoot/lisp"
  '';

  postBuild = ''
    emacs -L . --batch -l package --eval '(package-generate-autoloads "header-file" ".")'
  '';

  meta = {
    description = ''
      A major mode that, when associated with the .h file extension, will put
      those file into the major mode of their corresponding implementation file.
    '';
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ aidalgol ];
  };
}