diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-10-07 12:25:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-10-07 12:25:17 +0200 |
commit | 944bd79113b9c856b11dd2b40d40e0274a9f4dd9 (patch) | |
tree | 0ab03a6728142d5803d6b246e460dc075887a61e | |
parent | e85ccc8b50f8ff76e4324be2cd11e4194470a6df (diff) | |
download | guix-944bd79113b9c856b11dd2b40d40e0274a9f4dd9.tar.gz |
gnu: emacs-find-file-in-project: Update Git reference.
* gnu/packages/emacs-xyz.scm (emacs-find-file-in-project)[source]: Specify commit rather than tag.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 797c187c6d..50b5161619 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com> -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Alex Kost <alezost@gmail.com> ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> @@ -10396,7 +10396,12 @@ maximizes flexibility (at the expense of conciseness).") (method git-fetch) (uri (git-reference (url "https://github.com/technomancy/find-file-in-project") - (commit version))) + + ;; The "6.1.2" tag was modified in place, initially + ;; pointing to 756f616f77f3829de07821480e229c587c1afec0 + ;; and then change to the subsequent commit, + ;; 52274e6001545bdf45c6477ba21bfaa8eca04755. + (commit "756f616f77f3829de07821480e229c587c1afec0"))) (file-name (git-file-name name version)) (sha256 (base32 |