unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: kiasoc5 via Guix-patches via <guix-patches@gnu.org>
To: 57668@debbugs.gnu.org
Cc: kiasoc5 <kiasoc5@disroot.org>
Subject: [bug#57668] [PATCH 2/2] gnu: Add grml-zsh-config.
Date: Wed,  7 Sep 2022 23:58:57 -0400	[thread overview]
Message-ID: <f1d4ed9ed5a9817e2eb2adc79f7ee96982a9c998.1662609536.git.kiasoc5@disroot.org> (raw)
In-Reply-To: <9108062aa94dec4677225fa65b4e56ba19c5222d.1662609077.git.kiasoc5@disroot.org>

* gnu/packages/shellutils.scm (grml-zsh-config): New variable.
---
 gnu/packages/shellutils.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 110cbe9fda..0698c25598 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -38,6 +38,7 @@ (define-module (gnu packages shellutils)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
   #:use-module (guix build-system python)
@@ -56,6 +57,7 @@ (define-module (gnu packages shellutils)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages ruby)
   #:use-module (gnu packages shells)
+  #:use-module (gnu packages textutils)
   #:use-module (gnu packages tmux)
   #:use-module (gnu packages vim))
 
@@ -677,3 +679,35 @@ (define-public grc
 @end example
 ")
     (license license:gpl2)))
+
+(define-public grml-zsh-config
+  (package
+   (name "grml-zsh-config")
+   (version "0.19.3")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append
+                  "https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_"
+                  version ".tar.gz"))
+            (sha256
+             (base32
+              "05fri77028znjnvmh8mz3424rn8ilysj7hn8br2hk1qwkp4zzwp9"))))
+   (build-system copy-build-system)
+   (arguments
+    (list
+     #:phases
+     #~(modify-phases
+	%standard-phases
+	(add-before 'install 'make-doc
+		    (lambda _ (with-directory-excursion "doc" (invoke "make")))))
+     #:install-plan
+     #~'(("etc/skel/.zshrc"  "etc/skel/.zshrc")
+	 ("etc/zsh/keephack" "etc/zsh/keephack")
+	 ("etc/zsh/zshrc"    "etc/zsh/zshrc")
+	 ("doc/grmlzshrc.5"  "share/man/man5/grmlzshrc.5"))))
+   (native-inputs (list txt2tags))
+   (home-page "https://grml.org/zsh/")
+   (synopsis "grml's zsh configuration")
+   (description "This package provides an interactive setup for zsh preconfigured
+by the Grml project.")
+   (license license:gpl2)))

base-commit: b45a44eaad890f31d9418dbb8cb14e3ee1d83c19
prerequisite-patch-id: be0e6a7e441cb8ecb5efd53732b4830b3b64a29f
-- 
2.37.2





  reply	other threads:[~2022-09-08  4:00 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-08  3:51 [bug#57668] [PATCH 1/2] gnu: Add txt2tags kiasoc5 via Guix-patches via
2022-09-08  3:58 ` kiasoc5 via Guix-patches via [this message]
2022-09-12 13:29 ` bug#57668: " Christopher Baines

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=f1d4ed9ed5a9817e2eb2adc79f7ee96982a9c998.1662609536.git.kiasoc5@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=57668@debbugs.gnu.org \
    --cc=kiasoc5@disroot.org \
    /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).