summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/emacs-modes/bbdb/3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/bbdb/3.nix')
-rw-r--r--pkgs/applications/editors/emacs-modes/bbdb/3.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/editors/emacs-modes/bbdb/3.nix b/pkgs/applications/editors/emacs-modes/bbdb/3.nix
deleted file mode 100644
index d20ab53bf7e1..000000000000
--- a/pkgs/applications/editors/emacs-modes/bbdb/3.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl, emacs }:
-
-stdenv.mkDerivation rec {
- name = "bbdb-3.1.2";
-
- src = fetchurl {
- url = "https://download.savannah.gnu.org/releases/bbdb/${name}.tar.gz";
- sha256 = "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05";
- };
-
- buildInputs = [ emacs ];
-
- # Hack to disable documentation as there is no way to tell bbdb to
- # NOT build pdfs. I really don't want to pull in TexLive here...
- preConfigure = ''
- substituteInPlace ./Makefile.in \
- --replace "SUBDIRS = lisp doc tex" "SUBDIRS = lisp"
- '';
-
- meta = {
- homepage = https://savannah.nongnu.org/projects/bbdb/;
- description = "The Insidious Big Brother Database (BBDB), a contact management utility for Emacs, version 3";
- license = "GPL";
- };
-}