diff options
| -rw-r--r-- | qkguix/packages/emacs-xyz.scm | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/qkguix/packages/emacs-xyz.scm b/qkguix/packages/emacs-xyz.scm index 37bfb41..3feadb0 100644 --- a/qkguix/packages/emacs-xyz.scm +++ b/qkguix/packages/emacs-xyz.scm @@ -66,3 +66,20 @@ This also enables to display weekends or any weekday with preferred face.")  You can check timelines, tweet, mark posts as favorites and so on  with Emacs.")      (license license:gpl2+))) + +(define-public emacs-twittering-mode-git +  (let ((commit "114891e8fdb4f06b1326a6cf795e49c205cf9e29") +        (revision "0")) +    (package +      (inherit emacs-twittering-mode) +      (name "emacs-twittering-mode-git") +      (version (git-version "20181121" revision commit)) +      (source +       (origin +         (method git-fetch) +         (uri (git-reference +               (url "https://github.com/hayamiz/twittering-mode.git") +               (commit commit))) +         (file-name (git-file-name name version)) +         (sha256 +          (base32 "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia")))))))  | 
