about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/default.nix
blob: 8d4fcf5090c344f5a624cf92ed3ad7a7e5a9a290 (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
{ lib
, trivialBuild
, fetchFromGitHub
, emacs
 }:

trivialBuild rec {
  pname = "rect-mark";
  version = "1.4";

  src = fetchFromGitHub {
    owner = "emacsmirror";
    repo = pname;
    rev = version;
    hash = "sha256-/8T1VTYkKUxlNWXuuS54S5jpl4UxJBbgSuWc17a/VyM=";
  };

  meta = with lib; {
    homepage = "http://emacswiki.org/emacs/RectangleMark";
    description = "Mark a rectangle of text with highlighting";
    license = licenses.gpl2Plus;
    inherit (emacs.meta) platforms;
  };
}