* [bug#64513] [PATCH guix] gnu: Add git-issue.
@ 2023-07-07 13:28 ~rdesfo
2023-07-07 13:28 ` ~rdesfo
0 siblings, 1 reply; 2+ messages in thread
From: ~rdesfo @ 2023-07-07 13:28 UTC (permalink / raw)
To: 64513
From: Ryan Desfosses <rdesfo@sdf.org>
gnu/packages/version-control.scm (git-issue): New variable.
---
gnu/packages/version-control.scm | 34 ++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 40b9e124d2..c097b9cae3 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -48,6 +48,7 @@
;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
;;; Copyright © 2015, 2022 David Thompson <davet@gnu.org>
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2023 Ryan Desfosses <rdesfo@sdf.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3629,3 +3630,36 @@ create and manage trackers, tickets
interact with GraphQL APIs directly
@end table")
(license license:agpl3)))
+
+(define-public git-issue
+ (let ((commit "4d2bc4173bf803d74bf2ae54f892bd08754f1b48")
+ (revision "0"))
+ (package
+ (name "git-issue")
+ (version (git-version "4d2bc41" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dspinellis/git-issue")
+ (commit commit)))
+ (sha256
+ (base32
+ "0jmx8wjvvxkd3y5im2h96d13dnbpds66djf96b6s23jwfbr7dlsz"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-installation-target
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* "Makefile"
+ (("/usr") out)))))
+ (delete 'configure)
+ (delete 'check))))
+ (inputs (list jq curl))
+ (synopsis "Git-based decentralized issue management")
+ (description "This is a minimalist decentralized issue management system
+based on Git, offering (optional) biderectional integration with GitHub and
+GitLab issue management. It has the following advantages over other systems.")
+ (home-page "https://github.com/dspinellis/git-issue")
+ (license license:gpl3+))))
--
2.38.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [bug#64513] [PATCH guix] gnu: Add git-issue.
2023-07-07 13:28 [bug#64513] [PATCH guix] gnu: Add git-issue ~rdesfo
@ 2023-07-07 13:28 ` ~rdesfo
0 siblings, 0 replies; 2+ messages in thread
From: ~rdesfo @ 2023-07-07 13:28 UTC (permalink / raw)
To: 64513
From: Ryan Desfosses <rdesfo@sdf.org>
gnu/packages/version-control.scm (git-issue): New variable.
---
removed extra sentence out of the description.
gnu/packages/version-control.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index c097b9cae3..2ffbf85125 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3660,6 +3660,6 @@ interact with GraphQL APIs directly
(synopsis "Git-based decentralized issue management")
(description "This is a minimalist decentralized issue management system
based on Git, offering (optional) biderectional integration with GitHub and
-GitLab issue management. It has the following advantages over other systems.")
+GitLab issue management.")
(home-page "https://github.com/dspinellis/git-issue")
(license license:gpl3+))))
--
2.38.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-07-10 0:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-07 13:28 [bug#64513] [PATCH guix] gnu: Add git-issue ~rdesfo
2023-07-07 13:28 ` ~rdesfo
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.