2020-08-08 18:16:01 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
2024-06-18 12:47:39 -04:00
|
|
|
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
2020-08-08 18:16:01 -04:00
|
|
|
;;;
|
|
|
|
;;; 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 configuration-management)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (guix build-system go)
|
2024-06-18 12:47:39 -04:00
|
|
|
#:use-module (guix gexp)
|
2020-08-08 18:16:01 -04:00
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (gnu packages golang)
|
2024-02-05 15:57:31 -05:00
|
|
|
#:use-module (gnu packages golang-build)
|
2023-11-29 17:34:41 -05:00
|
|
|
#:use-module (gnu packages golang-web)
|
2024-02-16 10:17:56 -05:00
|
|
|
#:use-module (gnu packages golang-xyz)
|
2020-08-08 18:16:01 -04:00
|
|
|
#:use-module (gnu packages version-control)
|
|
|
|
#:use-module (gnu packages textutils)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils))
|
|
|
|
|
|
|
|
(define-public chezmoi
|
|
|
|
(package
|
|
|
|
(name "chezmoi")
|
2024-02-14 15:52:17 -05:00
|
|
|
(version "1.8.10")
|
2020-08-08 18:16:01 -04:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/twpayne/chezmoi")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2024-02-14 15:52:17 -05:00
|
|
|
"0ildvlq7v8vnw74y4fgnv3hpq49bpl6zh1wmakfh46crwg7ffmjb"))))
|
2020-08-08 18:16:01 -04:00
|
|
|
(build-system go-build-system)
|
|
|
|
(arguments
|
2024-06-18 12:47:39 -04:00
|
|
|
(list
|
|
|
|
#:go go-1.21
|
|
|
|
#:import-path "github.com/twpayne/chezmoi"
|
|
|
|
#:install-source? #f
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
;; Remove test script which expect additional user's programs available
|
|
|
|
;; in the PATH. The testdata directory is removed in the latest version
|
|
|
|
;; (2.46.1) of the program.
|
|
|
|
(add-after 'unpack 'remove-failing-test-scripts
|
|
|
|
(lambda* (#:key import-path #:allow-other-keys)
|
|
|
|
(for-each (lambda (f)
|
|
|
|
(delete-file (string-append "src/" import-path "/testdata/scripts/" f)))
|
|
|
|
'("bitwarden.txt"
|
|
|
|
"cd.txt"
|
|
|
|
"cd_unix.txt"
|
|
|
|
"completion.txt"
|
|
|
|
"diff.txt"
|
|
|
|
"edit.txt"
|
|
|
|
"editconfig.txt"
|
|
|
|
"git.txt"
|
|
|
|
"gopass.txt"
|
|
|
|
"keepassxc.txt"
|
|
|
|
"lastpass.txt"
|
|
|
|
"onepassword.txt"
|
|
|
|
"pass.txt"
|
|
|
|
"runscriptdir_unix.txt"
|
|
|
|
"script_unix.txt"
|
|
|
|
"secretgeneric.txt"
|
|
|
|
"secretgopass.txt"
|
|
|
|
"secretkeepassxc.txt"
|
|
|
|
"secretlastpass.txt"
|
|
|
|
"secretonepassword.txt"
|
|
|
|
"secretpass.txt")))))))
|
2020-08-08 18:16:01 -04:00
|
|
|
(native-inputs
|
2024-02-10 16:29:42 -05:00
|
|
|
(list go-github-com-alecthomas-chroma
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-aymerick-douceur
|
2024-02-14 15:52:17 -05:00
|
|
|
go-github-com-bmatcuk-doublestar-v2
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-charmbracelet-glamour
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-chris-ramon-douceur
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-coreos-go-semver
|
|
|
|
go-github-com-danwakefield-fnmatch
|
|
|
|
go-github-com-dlclark-regexp2
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-godbus-dbus
|
2024-02-14 15:52:17 -05:00
|
|
|
go-github-com-google-go-github-v33
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-google-go-querystring
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-google-goterm
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-google-renameio
|
|
|
|
go-github-com-gorilla-css
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-lucasb-eyer-go-colorful
|
2024-06-18 12:24:43 -04:00
|
|
|
go-github-com-masterminds-sprig-v3
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-mattn-go-isatty
|
|
|
|
go-github-com-mattn-go-runewidth
|
|
|
|
go-github-com-microcosm-cc-bluemonday
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-muesli-reflow-ansi
|
|
|
|
go-github-com-muesli-reflow-indent
|
|
|
|
go-github-com-muesli-reflow-padding
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-muesli-reflow-wordwrap
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-muesli-termenv
|
|
|
|
go-github-com-olekukonko-tablewriter
|
|
|
|
go-github-com-pelletier-go-toml
|
|
|
|
go-github-com-pkg-diff
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-com-rogpeppe-go-internal
|
2021-12-13 11:18:24 -05:00
|
|
|
go-github-com-sergi-go-diff
|
|
|
|
go-github-com-spf13-cobra
|
|
|
|
go-github-com-spf13-viper
|
|
|
|
go-github-com-twpayne-go-shell
|
|
|
|
go-github-com-twpayne-go-vfs
|
|
|
|
go-github-com-twpayne-go-vfsafero
|
|
|
|
go-github-com-twpayne-go-xdg
|
|
|
|
go-github-com-yuin-goldmark
|
|
|
|
go-github-com-zalando-go-keyring
|
2024-01-12 18:15:36 -05:00
|
|
|
go-github-go-git
|
2024-02-10 16:29:42 -05:00
|
|
|
go-go-etcd-io-bbolt
|
2021-12-13 11:18:24 -05:00
|
|
|
go-golang-org-x-net
|
|
|
|
go-golang-org-x-oauth2
|
2024-02-14 15:52:17 -05:00
|
|
|
go-golang-org-x-term
|
2023-01-17 20:44:55 -05:00
|
|
|
go-gopkg-in-errgo-fmt-errors))
|
2020-08-08 18:16:01 -04:00
|
|
|
(home-page "https://www.chezmoi.io/")
|
|
|
|
(synopsis "Personal configuration files manager")
|
|
|
|
(description "This package helps to manage personal configuration files
|
|
|
|
across multiple machines.")
|
|
|
|
(license license:expat)))
|