unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 180fff5ed9a82eaf0548e4a7f6d8fdc685819482 1481 bytes (raw)
name: gnu/packages/rcm.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
(define-module (gnu packages rcm)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages perl))

(define-public rcm
  (package
    (name "rcm")
    (version "1.3.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://thoughtbot.github.io/rcm/dist/rcm-"
                                  version ".tar.gz"))
              (sha256
               (base32 "1bqk7rrp1ckzvsvl9wghsr77m8xl3a7yc5gqdsisz492dx2j8mck"))))
    (build-system gnu-build-system)
    (arguments '(#:tests? #f))
    (native-inputs `(("perl" ,perl)
                     ("python-cram" ,python-cram)))
    (synopsis "Management suite for dotfiles")
    (description "The rcm suite of tools is for managing dotfiles directories.  This is
a directory containing all the @code{.*rc} files in your home directory
(@code{.zshrc}, @code{.vimrc}, and so on). These files have gone by many
names in history, such as “rc files” because they typically end in rc
or “dotfiles” because they begin with a period.  This suite is useful
for committing your rc files to a central repository to share, but it also
scales to a more complex situation such as multiple source directories
shared between computers with some host-specific or task-specific files.")
    (license bsd-3)
    (home-page "https://github.com/thoughtbot/rcm")))

debug log:

solving 180fff5ed9 ...
found 180fff5ed9 in https://yhetil.org/guix-patches/20190509153834.26585-1-josh@inv.alid.pw/

applying [1/1] https://yhetil.org/guix-patches/20190509153834.26585-1-josh@inv.alid.pw/
diff --git a/gnu/packages/rcm.scm b/gnu/packages/rcm.scm
new file mode 100644
index 0000000000..180fff5ed9

Checking patch gnu/packages/rcm.scm...
Applied patch gnu/packages/rcm.scm cleanly.

index at:
100644 180fff5ed9a82eaf0548e4a7f6d8fdc685819482	gnu/packages/rcm.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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).