unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Disseminate Dissent via Guix-patches via <guix-patches@gnu.org>
To: 52996@debbugs.gnu.org
Subject: [bug#52996] [PATCH] gnu: Add yadm.
Date: Tue, 04 Jan 2022 00:28:32 +0000	[thread overview]
Message-ID: <tOF54o2ItAc_QA9Ufl7XWi3-syhC9cK9UhbK1i0JjbFafeLIvGrM-roaMzMzDbrwuX5urzJXAnMh9yun3sC7VzdwSRmmZz93ozPioXrNt9Y=@protonmail.com> (raw)

[-- 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


                 reply	other threads:[~2022-01-04  0:29 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='tOF54o2ItAc_QA9Ufl7XWi3-syhC9cK9UhbK1i0JjbFafeLIvGrM-roaMzMzDbrwuX5urzJXAnMh9yun3sC7VzdwSRmmZz93ozPioXrNt9Y=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=52996@debbugs.gnu.org \
    --cc=disseminatedissent@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).