···1+{ lib
2+, stdenv
3+, fetchurl
4+}:
5+6+stdenv.mkDerivation rec {
7+ pname = "em";
8+ version = "1.0.0";
9+10+ src = fetchurl {
11+ url = "http://pgas.freeshell.org/C/em/${pname}-${version}.tar.gz";
12+ hash = "sha256-ijMBkl7U1f9MTXgli9kUFB8ttMG6TMQnxfDMP9AblTQ=";
13+ };
14+15+ meta = with lib; {
16+ homepage = "http://pgas.freeshell.org/C/em/";
17+ description = "Editor for Mortals";
18+ longDescription = ''
19+ Em is a QMC variant of the standard Unix text editor - ed. It includes all
20+ of ed, so the documentation for ed is fully applicable to em. Em also has
21+ a number of new commands and facilities designed to improve its
22+ interaction and increase its usefulness to users at fast vdu terminals
23+ (such as the ITT's at QMC).
24+ '';
25+ license = licenses.publicDomain;
26+ maintainers = with maintainers; [ AndersonTorres ];
27+ platforms = platforms.unix;
28+ };
29+}