diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-09 09:12:59 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-09 09:12:59 +0100 |
commit | 1f1cf91eab2e64433a270242f153bf5e2f7b8398 (patch) | |
tree | 61ae97e90768e314e2d72abfbbb7ff686c9e806f /gnu | |
parent | a459ece1e38027bb29c86ac60291b4ded73ebeb2 (diff) | |
download | guix-1f1cf91eab2e64433a270242f153bf5e2f7b8398.tar.gz |
gnu: emacs-openwith: Update to 20120531-0.5fe01de.
* gnu/packages/emacs-xyz.scm (emacs-openwith): Update to 20120531-0.5fe01de. [source]: Switch to GitHub URI since Bitbucket's has been deleted. [home-page]: Update URI accordingly.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 18dfdadea9..2fa090932f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13278,20 +13278,24 @@ characters from end of lines.") (license license:gpl3+))) (define-public emacs-openwith - (let ((changeset "aeb78782ec87680ea9f082a3f20a3675b3770cf9") - (revision "0")) + ;; There is no release tag. Version is extracted from main file. + (let ((version "20120531") + (revision "0") + (commit "5fe01dee520d24c839ad5ee18822667457d9f352")) (package (name "emacs-openwith") - (home-page "https://bitbucket.org/jpkotta/openwith") - (version (git-version "0.0.1" revision changeset)) - (source (origin - (method hg-fetch) - (uri (hg-reference (url home-page) (changeset changeset))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01")))) + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/garberw/openwith") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1scbawhlzmj5nhix779rlqf462g37q84vpq205qhg4qyscvfx6bi")))) (build-system emacs-build-system) + (home-page "https://github.com/garberw/openwith") (synopsis "Open external applications for files with Emacs") (description "This package enables you to associate file name patterns with external |