about summary refs log tree commit diff
path: root/pkgs/applications/editors/em/default.nix
blob: 89da2d719fa8cba995c2a3b227a38c05a595bea1 (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
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation rec {
  pname = "em";
  version = "1.0.0";

  src = fetchurl {
    url = "http://pgas.freeshell.org/C/em/${pname}-${version}.tar.gz";
    hash = "sha256-ijMBkl7U1f9MTXgli9kUFB8ttMG6TMQnxfDMP9AblTQ=";
  };

  meta = with lib; {
    homepage = "http://pgas.freeshell.org/C/em/";
    description = "Editor for Mortals";
    longDescription = ''
      Em is a QMC variant of the standard Unix text editor - ed. It includes all
      of ed, so the documentation for ed is fully applicable to em. Em also has
      a number of new commands and facilities designed to improve its
      interaction and increase its usefulness to users at fast vdu terminals
      (such as the ITT's at QMC).
    '';
    license = licenses.publicDomain;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
    mainProgram = "em";
  };
}