diff options
author | Brian Leung <brian@debian> | 2019-12-03 22:04:31 -0800 |
---|---|---|
committer | Brian Leung <brian@debian> | 2019-12-07 22:16:33 -0800 |
commit | 7e93817dfb021ab0bf881bacc5e028e2becbc6da (patch) | |
tree | c86e05e5cd22eae0325fe552c5465daa04668b72 /gnu/packages | |
parent | e6ba3dac61d6e7b53ec170a2eedb4966c22d5544 (diff) |
gnu: Add emacs-shackle.
* gnu/packages/emacs-xyz.scm (emacs-shackle): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 46b500bf78..7ad9220fec 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20271,3 +20271,26 @@ display of major and minor modes in the mode line.") interface.") (home-page "https://github.com/akirak/ivy-omni-org") (license license:gpl3+)))) + +(define-public emacs-shackle + (let ((commit "7ccbe513852a1d1700b698547efca14b8940319d") + (revision "1")) + (package + (name "emacs-shackle") + (version (git-version "1.0.3" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wasamasa/shackle.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0agsp8ia4irr540r898ifhjqp28n1zsq1pilv1kc272spn3qhvp9")))) + (build-system emacs-build-system) + (synopsis "Enforce rules for popups") + (description "This package provides a global minor mode in which users +can specify how popup-displaying functions occupy the screen.") + (home-page "https://github.com/wasamasa/shackle") + (license license:gpl3+)))) |