session-management-for-emacs: cleanup meta

+7 -5
+7 -5
pkgs/applications/editors/emacs/elisp-packages/session-management-for-emacs/default.nix
··· 16 cp lisp/*.el "$out/share/emacs/site-lisp/" 17 ''; 18 19 - meta = { 20 - # installation: add to your ~/.emacs 21 - # (require 'session) 22 - # (add-hook 'after-init-hook 'session-initialize) 23 description = "Small session management for emacs"; 24 homepage = "http://emacs-session.sourceforge.net/"; 25 - license = "GPL"; 26 }; 27 }
··· 16 cp lisp/*.el "$out/share/emacs/site-lisp/" 17 ''; 18 19 + meta = with lib; { 20 + /* installation: add to your ~/.emacs 21 + (require 'session) 22 + (add-hook 'after-init-hook 'session-initialize) 23 + */ 24 description = "Small session management for emacs"; 25 homepage = "http://emacs-session.sourceforge.net/"; 26 + license = license.gpl; 27 + maintainers = with maintainers; [ ]; 28 }; 29 }