about summary refs log tree commit diff
path: root/pkgs/applications/editors/em
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-01-05 23:13:44 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-01-05 23:14:19 -0300
commit22ef914f45016582348ef081286677c3f356db37 (patch)
treeab1c6c4241103ff2deaeade02f35e8189f94e72c /pkgs/applications/editors/em
parente67813b0c687e2c7363cf8d0134bdb698fd0faf7 (diff)
em: init at 1.0.0
Diffstat (limited to 'pkgs/applications/editors/em')
-rw-r--r--pkgs/applications/editors/em/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/editors/em/default.nix b/pkgs/applications/editors/em/default.nix
new file mode 100644
index 0000000000000..89cc795f5674e
--- /dev/null
+++ b/pkgs/applications/editors/em/default.nix
@@ -0,0 +1,29 @@
+{ 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;
+  };
+}