diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-09-22 21:08:45 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-09-22 21:08:45 +0300 |
| commit | 1373ca6b32869a8498c937d53e63b0d0127b38a3 (patch) | |
| tree | 1ca1d55a8ff6c476263318d82d0015979befab48 | |
| parent | wigust: Add emacs-minimal-checkout. (diff) | |
| download | guix-wigust-1373ca6b32869a8498c937d53e63b0d0127b38a3.tar.gz | |
wigust: emacs-org-ref: Change origin to git.
* wigust/packages/emacs.scm (emacs-org-ref): Change origin to git.
| -rw-r--r-- | wigust/packages/emacs.scm | 59 |
1 files changed, 32 insertions, 27 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index ca8f977..b098fb8 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1598,36 +1598,41 @@ Key features: (license license:gpl3+)))) (define-public emacs-org-ref - (package - (name "emacs-org-ref") - (version "1.1.1") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/jkitchin/org-ref/archive/" - "v" version ".tar.gz")) - (sha256 - (base32 - "1k422dxfhbn6jrdz6dj6z765xwgj7jdc09bqb2dv3k0s5jpjn66r")))) - (build-system emacs-build-system) - (propagated-inputs - `(("emacs-dash" ,emacs-dash) - ("emacs-helm" ,emacs-helm) - ("emacs-helm-bibtex" ,emacs-helm-bibtex) - ("emacs-ivy" ,emacs-ivy) - ("emacs-hydra" ,emacs-hydra) - ("emacs-key-chord" ,emacs-key-chord) - ("emacs-s" ,emacs-s) - ("emacs-f" ,emacs-f) - ("emacs-pdf-tools" ,emacs-pdf-tools))) - (home-page "https://github.com/jkitchin/org-ref") - (synopsis "Citations, cross-references and bibliographies in org-mode") - (description - "Lisp code to setup bibliography, cite, ref and label org-mode links. + (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129") + (revision "1")) + (package + (name "emacs-org-ref") + (version (string-append "1.1.1" "-" revision "." + (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jkitchin/org-ref.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-helm" ,emacs-helm) + ("emacs-helm-bibtex" ,emacs-helm-bibtex) + ("emacs-ivy" ,emacs-ivy) + ("emacs-hydra" ,emacs-hydra) + ("emacs-key-chord" ,emacs-key-chord) + ("emacs-s" ,emacs-s) + ("emacs-f" ,emacs-f) + ("emacs-pdf-tools" ,emacs-pdf-tools))) + (home-page "https://github.com/jkitchin/org-ref") + (synopsis "Citations, cross-references and bibliographies in org-mode") + (description + "Lisp code to setup bibliography, cite, ref and label org-mode links. Also sets up reftex and helm for org-mode citations. The links are clickable and do things that are useful. The default setup uses helm-bibtex. You should really read org-ref.org in this package for details.") - (license license:gpl3+))) + (license license:gpl3+)))) |
