tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
session-management-for-emacs: cleanup meta
Sandro Jäckel
4 years ago
b27cfad9
e3fe5e93
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
emacs
elisp-packages
session-management-for-emacs
default.nix
+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)
0
23
description = "Small session management for emacs";
24
homepage = "http://emacs-session.sourceforge.net/";
25
-
license = "GPL";
0
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
}