about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2018-11-18 18:52:12 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-11-20 20:44:34 +0100
commitcc7e724b9117ff2c5488f5beec4c93830808feff (patch)
treeea57f0ade89e561c8d571bbc65982b14216b60f2 /pkgs/applications/editors
parentbd73a3f1c7867d3ea986517bc8cffde8566df847 (diff)
downloadnixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar.gz
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar.bz2
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar.lz
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar.xz
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.tar.zst
nixlib-cc7e724b9117ff2c5488f5beec4c93830808feff.zip
remember: remove
Gna.org forge is closed and upstream repo was not relocated
+ remember-mode is part of the base Emacs since 26.1
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-modes/remember/default.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/applications/editors/emacs-modes/remember/default.nix b/pkgs/applications/editors/emacs-modes/remember/default.nix
deleted file mode 100644
index 7c0bc517755a..000000000000
--- a/pkgs/applications/editors/emacs-modes/remember/default.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ fetchurl, stdenv, texinfo, emacs, bbdb }:
-
-stdenv.mkDerivation rec {
-  # Note: Remember is part of GNU Emacs 23.
-  name = "remember-2.0";
-
-  src = fetchurl {
-    url = "http://download.gna.org/remember-el/${name}.tar.gz";
-    sha256 = "04bp071xjbb6mbspjpwcza0krgx2827v6rfxbsdcpn0qcjgad9wm";
-  };
-
-  # FIXME: It also has a (soft) dependency on Planner and Bibl-mode.
-  buildInputs = [ emacs bbdb texinfo ];
-
-  patchPhase = ''
-    sed -i "Makefile.defs" \
-         -e"s|^ *PREFIX *=.*$|PREFIX = $out|g ;
-	    s|^ *ELISPDIR *=.*$|ELISPDIR = $out/share/emacs/site-lisp|g ;
-	    s|^ *EMACS *=.*$|EMACS = emacs -L \"${bbdb}/share/emacs/site-lisp\"|g"
-  '';
-
-  meta = {
-    description = "Remember, an Emacs mode for quickly remembering data";
-
-    longDescription = ''
-      Remember is an Emacs mode for quickly remembering data.  It uses
-      whatever back-end is appropriate to record and correlate the
-      data, but its main intention is to allow you to express as
-      little structure as possible up front.
-
-      When you enter data, either by typing it into a buffer, or using
-      the contents of the selected region, Remember will store that
-      data -- unindexed, uninterpreted -- in a data pool.  It will
-      also try to remember as much context information as possible
-      (any text properties that were set, where you copied it from,
-      when, how, etc).  Later, you can walk through your accumulated
-      set of data (both organized, and unorganized) and easily begin
-      moving things around, and making annotations that will express
-      the full meaning of that data, as far as you know it.
-    '';
-
-    homepage = http://gna.org/projects/remember-el/;
-    license = stdenv.lib.licenses.gpl2Plus;
-  };
-}