all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Wilko Meyer <w@wmeyer.eu>
To: 72021@debbugs.gnu.org
Cc: Wilko Meyer <w@wmeyer.eu>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#72021] [PATCH 38/38] gnu: Add ouch.
Date: Wed, 10 Jul 2024 01:37:18 +0200	[thread overview]
Message-ID: <7339d6cd5449fcd017871c8f8b2b0a8654fb11a5.1720567735.git.w@wmeyer.eu> (raw)
In-Reply-To: <cover.1720567733.git.w@wmeyer.eu>

* gnu/packages/rust-apps.scm (ouch): New variable.

Change-Id: I2a0a42bdc44e8705516e003c9d55803cd33b84cf
---
 gnu/packages/rust-apps.scm | 58 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index d22cf2a98c..b0ea58b8f7 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1512,6 +1512,64 @@ (define-public netavark
 container management applications.")
     (license license:asl2.0)))
 
+(define-public ouch
+  (package
+    (name "ouch")
+    (version "0.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "ouch" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0r5wi3bmks4m7izyyqgvwdxz4qp60b2yy9c5igdq49hkz0m9dzp6"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-atty" ,rust-atty-0.2)
+                       ("rust-bstr" ,rust-bstr-1)
+                       ("rust-bzip2" ,rust-bzip2-0.4)
+                       ("rust-clap" ,rust-clap-4)
+                       ("rust-clap" ,rust-clap-4)
+                       ("rust-clap-complete" ,rust-clap-complete-4)
+                       ("rust-clap-mangen" ,rust-clap-mangen-0.2)
+                       ("rust-filetime-creation" ,rust-filetime-creation-0.1)
+                       ("rust-flate2" ,rust-flate2-1)
+                       ("rust-fs-err" ,rust-fs-err-2)
+                       ("rust-gzp" ,rust-gzp-0.11)
+                       ("rust-ignore" ,rust-ignore-0.4)
+                       ("rust-is-executable" ,rust-is-executable-1)
+                       ("rust-libc" ,rust-libc-0.2)
+                       ("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
+                       ("rust-lz4-flex" ,rust-lz4-flex-0.11)
+                       ("rust-once-cell" ,rust-once-cell-1)
+                       ("rust-rayon" ,rust-rayon-1)
+                       ("rust-same-file" ,rust-same-file-1)
+                       ("rust-sevenz-rust" ,rust-sevenz-rust-0.5)
+                       ("rust-snap" ,rust-snap-1)
+                       ("rust-tar" ,rust-tar-0.4)
+                       ("rust-tempfile" ,rust-tempfile-3)
+                       ("rust-time" ,rust-time-0.3)
+                       ("rust-unrar" ,rust-unrar-0.5)
+                       ("rust-xz2" ,rust-xz2-0.1)
+                       ("rust-zip" ,rust-zip-0.6)
+                       ("rust-zstd" ,rust-zstd-0.13))
+       #:cargo-development-inputs (("rust-assert-cmd" ,rust-assert-cmd-2)
+                                   ("rust-infer" ,rust-infer-0.15)
+                                   ("rust-insta" ,rust-insta-1)
+                                   ("rust-parse-display" ,rust-parse-display-0.8)
+                                   ("rust-proptest" ,rust-proptest-1)
+                                   ("rust-rand" ,rust-rand-0.8)
+                                   ("rust-test-strategy" ,rust-test-strategy-0.3))))
+    (native-inputs (list pkg-config))
+    (inputs (list (list zstd "lib") zlib))
+    (home-page "https://github.com/ouch-org/ouch")
+    (synopsis
+     "Compression and decompression utility")
+    (description
+     "This package provides a command-line utility for easily compressing and
+decompressing files and directories.")
+    (license license:expat)))
+
 (define-public ripgrep
   (package
     (name "ripgrep")
-- 
2.41.0





      parent reply	other threads:[~2024-07-09 23:41 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-09 23:33 [bug#72021] [PATCH 00/38] gnu: Add ouch Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 01/38] gnu: rust-cc-1: Update to 1.0.104 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 02/38] gnu: rust-chrono-0.4: Update to 0.4.38 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 03/38] gnu: rust-clap-mangen-0.2: Update to 0.2.22 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 04/38] gnu: rust-crc32fast-1: Update to 1.4.2 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 05/38] gnu: rust-crossbeam-utils-0.8: Update to 0.8.20 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 06/38] gnu: rust-deflate64-0.1: Update to 0.1.8 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 07/38] gnu: Add rust-filetime-creation-0.1 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 08/38] gnu: rust-flate2-1: Update to 1.0.30 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 09/38] gnu: Add rust-gzp-0.11 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 10/38] gnu: Add rust-infer-0.15 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 11/38] gnu: rust-jobserver-0.1: Update to 0.1.31 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 12/38] gnu: Add rust-libdeflate-sys-0.12 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 13/38] gnu: Add rust-libdeflater-0.12 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 14/38] gnu: Add rust-zlib-rs-0.1 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 15/38] gnu: Add rust-libz-rs-sys-0.1 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 16/38] gnu: Add rust-lockfree-object-pool-0.1 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 17/38] gnu: Add rust-lzma-rs-0.3 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 18/38] gnu: Add rust-lzma-rust-0.1 Wilko Meyer
2024-07-09 23:36 ` [bug#72021] [PATCH 19/38] gnu: rust-memchr-2: Update to 2.7.4 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 20/38] gnu: rust-serde-1: Update to 1.0.203 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 21/38] gnu: rust-serde-derive-1: " Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 22/38] gnu: Add rust-sevenz-rust-0.5 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 23/38] gnu: Add rust-test-strategy-0.3 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 24/38] gnu: rust-time-0.3: Update to 0.3.36 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 25/38] gnu: rust-time-macros-0.2: Update to 0.2.18 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 26/38] gnu: Add rust-unrar-sys-0.3 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 27/38] gnu: Add rust-unrar-0.5 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 28/38] gnu: Add rust-zip-2 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 29/38] gnu: Add rust-zopfli-0.8 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 30/38] gnu: rust-zstd-0.13: Update to 0.13.1 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 31/38] gnu: rust-zstd-safe-7: Update to 7.1.0 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 32/38] gnu: Add rust-cfb-0.7 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 33/38] gnu: rust-serde-json-1: Update to 1.0.120 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 34/38] gnu: rust-serde-test-1: Update to 1.0.176 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 35/38] gnu: rust-thiserror-1: Update to 1.0.61 Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 36/38] gnu: rust-thiserror-impl-1: " Wilko Meyer
2024-07-09 23:37 ` [bug#72021] [PATCH 37/38] gnu: Add rust-nt-time-0.6 Wilko Meyer
2024-07-09 23:37 ` Wilko Meyer [this message]

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

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

  git send-email \
    --in-reply-to=7339d6cd5449fcd017871c8f8b2b0a8654fb11a5.1720567735.git.w@wmeyer.eu \
    --to=w@wmeyer.eu \
    --cc=72021@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.