unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71764] [PATCH] gnu: Add got.
@ 2024-06-24 23:01 ashish.is--- via Guix-patches via
  2024-06-24 23:27 ` [bug#71764] [PATCH v2] " ashish.is--- via Guix-patches via
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: ashish.is--- via Guix-patches via @ 2024-06-24 23:01 UTC (permalink / raw)
  To: 71764; +Cc: Ashish SHUKLA

From: Ashish SHUKLA <ashish.is@lostca.se>

* gnu/packages/version-control.scm (fnc): New variable.

Change-Id: I8b1398949fbe7f07cfa75fe194d78c24e1e880fd
---
 gnu/packages/version-control.scm | 37 ++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index da02d0e4ea..8be76eafa0 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -52,6 +52,7 @@
 ;;; Copyright © 2023 Steve George <steve@futurile.net>
 ;;; Copyright © 2023 Josselin Poiret <dev@jpoiret.xyz>
 ;;; Copyright © 2024 Hilton Chain <hako@ultrarare.space>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -98,6 +99,7 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages cook)
   #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crates-vcs)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages docbook)
@@ -120,6 +122,8 @@ (define-module (gnu packages version-control)
   #:use-module (gnu packages guile-xyz)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages libbsd)
+  #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mail)
   #:use-module (gnu packages man)
@@ -830,6 +834,39 @@ (define-public git-cal
 to GitHub contributions calendar.")
     (license license:expat)))
 
+(define-public got
+  (package
+   (name "got")
+   (version "0.100")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "https://gameoftrees.org/releases/portable/got-portable-"
+                                version ".tar.gz"))
+            (sha256
+             (base32
+              "04jhaqzskr26akmy963yc8gaw1pqbsxhgsxzd0yrssgzcwh8lfpw"))))
+   (inputs
+    `(("libevent" ,libevent)
+      ("libuuid" ,util-linux "lib")
+      ("zlib" ,zlib)
+      ("libressl" ,libressl)
+      ("libmd" ,libmd)
+      ("libbsd" ,libbsd)
+      ("ncurses" ,ncurses)))
+   (native-inputs
+    (list pkg-config))
+   (arguments
+     ;; disable runpath validation, courtesy: libbsd's special
+     ;; treatment of libmd
+     (list #:validate-runpath? #f))
+   (build-system gnu-build-system)
+   (synopsis "Distributed version control system")
+   (description
+     "Game of Trees (Got) is a version control system which prioritizes ease of use
+and simplicity over flexibility.")
+    (license license:bsd-3)
+    (home-page "https://gameoftrees.org/")))
+
 (define-public xdiff
   (let ((revision "0")
         (commit "a137bc7ee6c76618ed1737c257548eaa10ac0089"))

base-commit: 78d946b01162fbe986c6768800e8cfd6e70e67e5
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-09-12 14:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24 23:01 [bug#71764] [PATCH] gnu: Add got ashish.is--- via Guix-patches via
2024-06-24 23:27 ` [bug#71764] [PATCH v2] " ashish.is--- via Guix-patches via
2024-06-28  5:13 ` [bug#71764] [PATCH v3] " ashish.is--- via Guix-patches via
2024-07-13  9:19 ` [bug#71764] [PATCH v4] " ashish.is--- via Guix-patches via
2024-07-19 13:02 ` [bug#71764] [PATCH v5] " ashish.is--- via Guix-patches via
2024-08-15 20:05 ` [bug#71764] [PATCH v6] " Ashish SHUKLA via Guix-patches via
2024-09-12 14:00 ` [bug#71764] [PATCH v7] " Ashish SHUKLA via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).