forked from mirrors/nixpkgs
Add meta attributes to emacsPackages.d
This commit is contained in:
parent
860336e786
commit
f8247edd1c
|
@ -1,5 +1,6 @@
|
||||||
{stdenv, fetchurl, emacs}:
|
{stdenv, fetchurl, emacs}:
|
||||||
|
|
||||||
|
# Note: Don't have a version, using date as fallback.
|
||||||
let version = "20150111";
|
let version = "20150111";
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
|
@ -20,4 +21,12 @@ in stdenv.mkDerivation {
|
||||||
install -d $out/share/emacs/site-lisp
|
install -d $out/share/emacs/site-lisp
|
||||||
install *.el *.elc $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;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue