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

trivialBuild {
  pname = "bqn-mode";
  version = "0.0.0+unstable=2021-09-26";

  src = fetchFromGitHub {
    owner = "mlochbaum";
    repo = "BQN";
    rev = "97cbdc67fe6a9652c42daefadd658cc41c1e5ae3";
    sha256 = "09nmsl7gzyi56g0x459a6571c8nsafl0g350m0hk1vy2gpg6yq0p";
  };

  postUnpack = ''
    sourceRoot="$sourceRoot/editors/emacs"
  '';

  meta = with lib; {
    homepage = "https://mlochbaum.github.io/BQN/editors/index.html";
    description = "Emacs mode for BQN";
    license = licenses.gpl3Only;
    maintainers = [ maintainers.sternenseemann ];
  };
}