em: init at 1.0.0

+31
+29
pkgs/applications/editors/em/default.nix
··· 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 + }
+2
pkgs/top-level/all-packages.nix
··· 25032 25032 25033 25033 elvis = callPackage ../applications/editors/elvis { }; 25034 25034 25035 + em = callPackage ../applications/editors/em { }; 25036 + 25035 25037 emacs = emacs27; 25036 25038 emacs-nox = emacs27-nox; 25037 25039