summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/hexrgb/default.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-11-12 18:43:35 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2017-11-12 18:43:35 -0600
commit47a854ae01538396a2a3b0c4b3febd3e50c62440 (patch)
tree35ec86f15a836b3a523fb80a9f78f4982186998c /pkgs/applications/editors/emacs-modes/hexrgb/default.nix
parent4ad86c5f9676caf20ff0d65880cd6f637fe59fa1 (diff)
downloadnixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar.gz
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar.bz2
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar.lz
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar.xz
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.tar.zst
nixlib-47a854ae01538396a2a3b0c4b3febd3e50c62440.zip
emacs: add missing packages
this fixes eval for nix-env -qaA nixpkgs.emacsPackagesNg
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/hexrgb/default.nix')
-rw-r--r--pkgs/applications/editors/emacs-modes/hexrgb/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/editors/emacs-modes/hexrgb/default.nix b/pkgs/applications/editors/emacs-modes/hexrgb/default.nix
new file mode 100644
index 000000000000..2781898c0da6
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/hexrgb/default.nix
@@ -0,0 +1,23 @@
+{ fetchurl, lib, stdenv, melpaBuild }:
+
+melpaBuild {
+  pname = "hexrgb";
+  version = "20170304.1017";
+
+  src = fetchurl {
+    url = "https://www.emacswiki.org/emacs/download/hexrgb.el";
+    sha256 = "1aj1fsc3wr8174xs45j2wc2mm6f8v6zs40xn0r4qisdw0plmsbsy";
+    name = "hexrgb.el";
+  };
+
+  recipeFile = fetchurl {
+    url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/hexrgb";
+    sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06";
+    name = "hexrgb";
+  };
+
+  meta = {
+    homepage = "https://melpa.org/#/hexrgb";
+    license = lib.licenses.gpl2Plus;
+  };
+}