aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/rcm.scm
blob: 6bdeeb7e9db5638310b70ebb19ecd04dec70ac97 (about) (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
;;; Copyright © 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(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.5")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://thoughtbot.github.io/rcm/dist/rcm-"
                                  version ".tar.gz"))
              (sha256
               (base32 "0bdyksrd9i3lkmr9kq6dwa0l4g2403vnma5s4j9h8spi4rziwx14"))))
    (build-system gnu-build-system)
    (arguments '(#:phases
                 (modify-phases %standard-phases
                   (add-after 'patch-source-shebangs 'patch-tests
                     (lambda _
                       (substitute* '("test/rcrc-tilde.t"
                                      "test/rcdn-hooks-run-in-order.t"
                                      "test/rcup-hooks-run-in-order.t")
                         (("/bin/sh") (which "sh")))
                       (substitute* "test/rcup-hooks.t"
                         (("/usr/bin/env") (which "env"))))))
                  #:parallel-tests? #f))
    (native-inputs (list perl 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")))
scm: Likewise. * tests/profiles.scm ("profile-derivation, cross-compilation"): Likewise. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Co-authored-by: Christopher Baines <mail@cbaines.net> Change-Id: I24239f427bcc930c29d2ba5d00dc615960a6c374 Janneke Nieuwenhuizen 2023-11-30gnu: guix: Update to 1.4.0-15.e0885fcfbb....* gnu/packages/package-management.scm (guix): Update to 1.4.0-15.e0885fcfbb. Change-Id: I3a3f1512650389f9cd3edbd47c1aaf4a2410daff Janneke Nieuwenhuizen 2023-11-23gnu: guix-build-coordinator: Update to 92.78df0b3....* gnu/packages/package-management.scm (guix-build-coordinator): Update to 92.78df0b3. Change-Id: Id60ca3be76c6ac897f1aa2fed4f8c03b03a25fea Christopher Baines 2023-11-23gnu: nar-herder: Update to 0-23.5ccd6cb....* gnu/packages/package-management.scm (nar-herder): Update to 0-23.5ccd6cb. Change-Id: I6a43dd20de4518fb1f6476d321d8c76536fa47fc Christopher Baines 2023-11-20gnu: guix-build-coordinator: Update to 0-91.c226d48....* gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-91.c226d48. Change-Id: Iebdddea7f5c18aaae2ef4436c039189685a07442 Christopher Baines 2023-11-12gnu: nar-herder: Update to 0-22.bf539aa....* gnu/packages/package-management.scm (nar-herder): Update to 0-22.bf539aa. Change-Id: I00e1417d8c38e4d7ce73f9acae082d562bff58f7 Christopher Baines 2023-11-09gnu: guix: Update to a60ff46....* gnu/packages/package-management.scm (guix): Update to a60ff46. Change-Id: Idf8b316253e83747bb8af648ae11a6dae5b8f73d Efraim Flashner 2023-10-17gnu: guix-build-coordinator: Update to 0-90.3446355....* gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-90.3446355. Christopher Baines 2023-10-06gnu: guix: Update to e863274....This includes the ‘guix perform-download’ fix from commit 762fdbdef52b4c17df578478cadc8655d56171a4. * gnu/packages/package-management.scm (guix): Update to e863274. Ludovic Courtès 2023-10-02gnu: guix: Update to 1.4.0-12.b9fae146d6....This brings the "declarative offloading setup" and using "the right locale package on GNU/Hurd". * gnu/packages/package-management.scm (guix): Update to 1.4.0-12.b9fae146d6. Janneke Nieuwenhuizen 2023-09-29gnu: guix: Fix cross-compilation....Fixes a regression introduced in 59587e2fda76c19b424fda9a987ff90d52ef217e where ./configure would fail when cross-compiling with “Git is missing”. Reported by gabber on #guix. * gnu/packages/package-management.scm (guix)[arguments]: Add ‘ac_cv_path_GIT’ to #:configure-flags. Ludovic Courtès 2023-09-28gnu: guix: Update to d0438fc....This adds the “builtin:git-download” derivation builder to guix-daemon, added in commit 13b0cf85eb31e1b1ea674debbbfb0f35a32d1374. * gnu/packages/package-management.scm (guix): Update to d0438fc. Ludovic Courtès 2023-09-25gnu: guile-fibers: Remove version from latest package....As I think this makes more sense, the version is only specified when you need a specific previous release. * gnu/packages/guile-xyz.scm (guile-fibers): Rename to guile-fibers-1.0. (guile-fibers-1.3): Rename to guile-fibers. (guile-fibers-1.1): Inherit from guile-fibers. * gnu/packages/admin.scm (shepherd-0.10)[native-inputs]: Replace guile-fibers-1.3 with guile-fibers. * gnu/packages/ci.scm (cuirass)[inputs]: Likewise. * gnu/packages/gnunet.scm (gnunet-scheme)[propagated-inputs,native-inputs]: Likewise. * gnu/packages/package-management.scm (guix-build-coordinator) [inputs,propagated-inputs]: Likewise. * gnu/packages/package-management.scm (nar-herder)[inputs,propagated-inputs]: Likewise. * gnu/packages/web.scm (guix-data-service)[propagated-inputs]: Likewise. Christopher Baines 2023-09-18Revert "gnu: guix: Update to 1.4.0-11.658de25e99."...Several people on IRC report that "rewrite-url, to-version specified" fails. This reverts commit 1a0c7f71f0d74167f04377773791305260871b26. Janneke Nieuwenhuizen 2023-09-18gnu: guix: Update to 1.4.0-11.658de25e99....* gnu/packages/package-management.scm (guix): Update to 1.4.0-11.658de25e99. Janneke Nieuwenhuizen 2023-09-16gnu: bffe: Update to 0-2.722c37e....* gnu/packages/package-management.scm (bffe): Update to 0-2.722c37e. Christopher Baines 2023-09-16gnu: guix-build-coordinator: Update to 0-89.9c42dcb....* gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-89.9c42dcb. Christopher Baines 2023-09-15gnu: libostree: Update to 2023.5....* gnu/packages/package-management.scm (libostree): Update to 2023.5. Signed-off-by: Christopher Baines <mail@cbaines.net> kiasoc5 2023-09-15services: bffe: Use guile from the package....Rather than hardcoding a particular guile in the service definition. * gnu/services/guix.scm (bffe-shepherd-services): Use guile from the package. * gnu/packages/package-management.scm (bffe)[inputs]: Remove unnecessary guile-next input. Christopher Baines 2023-09-15gnu: Add bffe....* gnu/packages/package-management.scm (bffe): New variable. Christopher Baines 2023-09-12gnu: nar-herder: Use guile-next....As this provides suspendable soft/custom ports, which I'd like to use. * gnu/packages/package-management.scm (nar-herder)[native-inputs,inputs]: Use guile-next. Christopher Baines