summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-21/default.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-19 19:09:10 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-19 19:09:10 +0000
commite85500987b7df503b37a127a5ea49a07f92e70f0 (patch)
tree5f66b5de9aadaf0ff3ba52c394dc0066114e11e2 /pkgs/applications/editors/emacs-21/default.nix
parent7ade207f6b75da0fde94cec621ac6d8fa6c3e586 (diff)
parent58f543f19f1a2eed8a46202b36a855836cfc9e0f (diff)
downloadnixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.gz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.bz2
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.lz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.xz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.zst
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.zip
Merging from trunk. I had to do two manual merges, quite trivial I think.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18472
Diffstat (limited to 'pkgs/applications/editors/emacs-21/default.nix')
-rw-r--r--pkgs/applications/editors/emacs-21/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/applications/editors/emacs-21/default.nix b/pkgs/applications/editors/emacs-21/default.nix
deleted file mode 100644
index 9fc16594e26f..000000000000
--- a/pkgs/applications/editors/emacs-21/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ xawSupport ? true
-, xpmSupport ? true
-, xaw3dSupport ? false
-, stdenv, fetchurl, ncurses, x11, libXaw ? null, libXpm ? null, Xaw3d ? null
-}:
-
-assert xawSupport && !xaw3dSupport -> libXaw != null;
-assert xawSupport && xaw3dSupport -> Xaw3d != null;
-assert xpmSupport -> libXpm != null;
-
-stdenv.mkDerivation {
-  name = "emacs-21.4a";
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = http://nixos.org/tarballs/emacs-21.4a.tar.gz;
-    md5 = "8f9d97cbd126121bd5d97e5e31168a87";
-  };
-  patches = [./crt.patch];
-  buildInputs = [
-    ncurses x11
-    (if xawSupport then if xaw3dSupport then Xaw3d else libXaw else null)
-    (if xpmSupport then libXpm else null)
-  ];
-
-  meta = {
-    description = "All Hail Emacs, the ultimate editor";
-  };
-}