about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2019-09-01 19:26:51 +0100
committeradisbladis <adisbladis@gmail.com>2019-09-01 19:26:51 +0100
commit15f70ea7ed88492b842dcc5f7e39cde7a9368fd1 (patch)
tree9f3e6db23e9d09d02aacfa185cb0fedfb64c4c9e /pkgs/applications/editors
parent3b632b78a23c2c0bf266cacdcf3eaf2450890dc7 (diff)
downloadnixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar.gz
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar.bz2
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar.lz
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar.xz
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.tar.zst
nixlib-15f70ea7ed88492b842dcc5f7e39cde7a9368fd1.zip
emacs-packages: Drop manually created coffee-mode
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-modes/coffee/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/applications/editors/emacs-modes/coffee/default.nix b/pkgs/applications/editors/emacs-modes/coffee/default.nix
deleted file mode 100644
index 495b1aca4b53..000000000000
--- a/pkgs/applications/editors/emacs-modes/coffee/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, fetchgit, emacs }:
-
-stdenv.mkDerivation rec {
-  name = "coffee-mode-0.4.1";
-
-  src = fetchgit {
-    url = "https://github.com/defunkt/coffee-mode.git";
-    rev = "c45c5f7a529363bc7aa57db0f3df26389fd233d8";
-    sha256 = "36a7792b5ffbcc5a580e8d5b2425494c60a8015cfde0e3f8a946a685da231ce2";
-  };
-
-  buildInputs = [ emacs ];
-
-  buildPhase = ''
-    emacs --batch -f batch-byte-compile coffee-mode.el
-  '';
-
-  installPhase = ''
-    install -d $out/share/emacs/site-lisp
-    install coffee-mode.el coffee-mode.elc $out/share/emacs/site-lisp
-  '';
-
-  meta = {
-    description = "Emacs major mode for CoffeeScript, unfancy JavaScript";
-    homepage = https://github.com/defunkt/coffee-mode;
-    license = stdenv.lib.licenses.gpl2Plus;
-
-    platforms = stdenv.lib.platforms.all;
-  };
-}