summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-02-07 02:05:06 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-02-07 02:09:20 +0100
commit8cf5eefbf3ca634fce98a832fc90e84ce91ef9d4 (patch)
treece2f6211833fc155b8ec2ad67812584faf849af3
parent0cf8d9beed4f694ac3d4e65916fbbe6b58e6a045 (diff)
gnu: emacs-pr-review: Switch to git tag.
* gnu/packages/emacs-xyz.scm (emacs-pr-review): Switch to git tag. Change-Id: Icad59d138b158b8e24b492e4de79904eb08d493f
-rw-r--r--gnu/packages/emacs-xyz.scm38
1 files changed, 18 insertions, 20 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 759000184b..f012cceaf4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29958,27 +29958,25 @@ accept and reject GitHub pull requests.")
(license license:gpl3+))))
(define-public emacs-pr-review
- (let ((revision "0")
- (commit "9fa4ef4d1922cbd6dd37b631ea05aed0ef358178"))
- (package
- (name "emacs-pr-review")
- (version (git-version "0.0.0" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/blahgeek/emacs-pr-review.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1cm92263jqvq2lg378xqi8ikbqw98lxjpsl29sja2xg2wf6p7gml"))))
- (build-system emacs-build-system)
- (propagated-inputs (list emacs-magit emacs-ghub emacs-markdown-mode))
- (synopsis "Review GitHub Pull Requests")
- (description "This package provides a way to review GitHub Pull
+ (package
+ (name "emacs-pr-review")
+ (version "0.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/blahgeek/emacs-pr-review.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1cm92263jqvq2lg378xqi8ikbqw98lxjpsl29sja2xg2wf6p7gml"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-magit emacs-ghub emacs-markdown-mode))
+ (synopsis "Review GitHub Pull Requests")
+ (description "This package provides a way to review GitHub Pull
Requests from magit.")
- (home-page "https://github.com/blahgeek/emacs-pr-review/")
- (license license:gpl3+))))
+ (home-page "https://github.com/blahgeek/emacs-pr-review/")
+ (license license:gpl3+)))
(define-public emacs-deadgrep
(package