summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJohannes Bornhold <johannes@bornhold.name>2015-01-11 18:40:53 +0100
committerJohannes Bornhold <johannes@bornhold.name>2015-01-11 18:46:48 +0100
commitf8247edd1c27fe8b9f3926b92a81e977db78a04e (patch)
treef5f9481dabebad33a6bbfe6bc82dd62bf096098c /pkgs/applications
parent860336e7860d1c196427853ccd0d67a6fe021286 (diff)
downloadnixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar.gz
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar.bz2
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar.lz
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar.xz
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.tar.zst
nixpkgs-f8247edd1c27fe8b9f3926b92a81e977db78a04e.zip
Add meta attributes to emacsPackages.d
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/emacs-modes/d/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/editors/emacs-modes/d/default.nix b/pkgs/applications/editors/emacs-modes/d/default.nix
index dd3a2305efd..28736acded2 100644
--- a/pkgs/applications/editors/emacs-modes/d/default.nix
+++ b/pkgs/applications/editors/emacs-modes/d/default.nix
@@ -1,5 +1,6 @@
 {stdenv, fetchurl, emacs}:
 
+# Note: Don't have a version, using date as fallback.
 let version = "20150111";
 
 in stdenv.mkDerivation {
@@ -20,4 +21,12 @@ in stdenv.mkDerivation {
     install -d $out/share/emacs/site-lisp
     install *.el *.elc $out/share/emacs/site-lisp
   '';
+
+  meta = {
+    description = "Major mode for editing D code";
+    homepage = https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.all;
+  };
+
 }