all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#52996] [PATCH] gnu: Add yadm.
@ 2022-01-04  0:28 Disseminate Dissent via Guix-patches via
  0 siblings, 0 replies; only message in thread
From: Disseminate Dissent via Guix-patches via @ 2022-01-04  0:28 UTC (permalink / raw)
  To: 52996

[-- Attachment #1: Type: text/plain, Size: 27 bytes --]



Disseminate,
Peace


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-yadm.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-yadm.patch, Size: 2326 bytes --]

From df48241d3b4be19110dad216c34b67b9aa0a2c9f Mon Sep 17 00:00:00 2001
From: paladhammika <paladhammika@protonmail.com>
Date: Mon, 3 Jan 2022 19:26:02 -0500
Subject: [PATCH] gnu: Add yadm.

---
 gnu/packages/configuration-management.scm | 31 +++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/configuration-management.scm b/gnu/packages/configuration-management.scm
index c64b937fe5..f9e08b87e4 100644
--- a/gnu/packages/configuration-management.scm
+++ b/gnu/packages/configuration-management.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2022 Disseminate Dissent <disseminatedissent@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -19,6 +20,7 @@
 (define-module (gnu packages configuration-management)
   #:use-module (gnu packages)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system gnu)
   #:use-module (guix git-download)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages version-control)
@@ -103,3 +105,32 @@ (define-public chezmoi
     (description "This package helps to manage personal configuration files
 across multiple machines.")
     (license license:expat)))
+
+(define-public yadm
+  (package
+   (name "yadm")
+   (version "3.1.1")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/TheLocehiliosan/yadm")
+                  (commit version)))
+            (file-name (git-file-name name version))
+            (sha256
+             (base32
+              "1s80l405w001var72pw5k3d88dqlm52njghdh6s3m344b839223f"))))
+   (build-system gnu-build-system)
+   (arguments
+    '(#:tests? #f
+      #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+      #:phases
+      (modify-phases %standard-phases
+                     (delete 'bootstrap)
+                     (delete 'configure)
+                     (delete 'build))))
+   (synopsis "Yet Another Dotfiles Manager")
+   (description
+    "yadm is like having a version of Git, that only operates on your dotfiles.
+If you know how to use Git, you already know how to use yadm.")
+   (home-page "https://yadm.io/")
+   (license license:gpl3+)))
-- 
2.34.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-04  0:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04  0:28 [bug#52996] [PATCH] gnu: Add yadm Disseminate Dissent via Guix-patches via

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.