summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/emacs-modes/helm-words/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-05-20 20:03:41 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-05-21 00:32:06 -0300
commit70a5cbc2987b61e2c964c3390cffcedf394de1ad (patch)
tree07924f521df443a9a305490a33517de6885eb9ee /pkgs/applications/editors/emacs-modes/helm-words/default.nix
parent788deaad9dbc27b94c0d930b617f659e71ea7987 (diff)
Rename emacs-modes to emacs/elisp-packages
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/helm-words/default.nix')
-rw-r--r--pkgs/applications/editors/emacs-modes/helm-words/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/applications/editors/emacs-modes/helm-words/default.nix b/pkgs/applications/editors/emacs-modes/helm-words/default.nix
deleted file mode 100644
index 0678492500d6..000000000000
--- a/pkgs/applications/editors/emacs-modes/helm-words/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, stdenv, fetchgit }:
-
-stdenv.mkDerivation {
- name = "helm-words-20190917";
-
- src = fetchgit {
- url = "https://github.com/pronobis/helm-words.git";
- rev = "e6387ece1940a06695b9d910de3d90252efb8d29";
- sha256 = "1ly0mbzlgc26fqvf7rxpmy698g0cf9qldrwrx022ar6r68l1h7xf";
- };
-
- installPhase = ''
- mkdir -p $out/share/emacs/site-lisp
- cp *.el *.elc $out/share/emacs/site-lisp/
- '';
-
- meta = {
- description = "Emacs major mode for jade and stylus";
- homepage = "https://github.com/brianc/helm-words";
- license = lib.licenses.gpl3;
- platforms = lib.platforms.all;
- };
-}