···11+{ lib
22+, stdenv
33+, fetchurl
44+}:
55+66+stdenv.mkDerivation rec {
77+ pname = "em";
88+ version = "1.0.0";
99+1010+ src = fetchurl {
1111+ url = "http://pgas.freeshell.org/C/em/${pname}-${version}.tar.gz";
1212+ hash = "sha256-ijMBkl7U1f9MTXgli9kUFB8ttMG6TMQnxfDMP9AblTQ=";
1313+ };
1414+1515+ meta = with lib; {
1616+ homepage = "http://pgas.freeshell.org/C/em/";
1717+ description = "Editor for Mortals";
1818+ longDescription = ''
1919+ Em is a QMC variant of the standard Unix text editor - ed. It includes all
2020+ of ed, so the documentation for ed is fully applicable to em. Em also has
2121+ a number of new commands and facilities designed to improve its
2222+ interaction and increase its usefulness to users at fast vdu terminals
2323+ (such as the ITT's at QMC).
2424+ '';
2525+ license = licenses.publicDomain;
2626+ maintainers = with maintainers; [ AndersonTorres ];
2727+ platforms = platforms.unix;
2828+ };
2929+}