From 0dcb822bf6c891b40ff570059dfb0ae661da389a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 23 May 2021 11:44:14 +0200 Subject: gnu: exfatprogs: Update to 1.1.2. * gnu/packages/file-systems.scm (exfatprogs): Update to 1.1.2. --- gnu/packages/file-systems.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/file-systems.scm') diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index ad721017b5..c64c0df727 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -477,7 +477,7 @@ from the bcachefs-tools package. It is meant to be used in initrds.") (define-public exfatprogs (package (name "exfatprogs") - (version "1.1.1") + (version "1.1.2") (source (origin (method git-fetch) @@ -486,7 +486,7 @@ from the bcachefs-tools package. It is meant to be used in initrds.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1zl3w5w2mzyggizc4dsiln0pa013f8sf5dxmm5wflplpfm6k4brk")))) + (base32 "19pbybgbfnvjb3n944ihrn1r8ch4dm8dr0d44d6w7p63dcp372xy")))) (build-system gnu-build-system) (arguments `(#:configure-flags -- cgit v1.2.3 From 10343994dc562f68771207bf4da313a7d531d2b3 Mon Sep 17 00:00:00 2001 From: Ron Nazarov via Guix-patches via Date: Wed, 2 Jun 2021 13:32:45 +0100 Subject: gnu: Add udftools. * gnu/packages/file-systems.scm (udftools): New variable. Signed-off-by: Tobias Geerinckx-Rice --- gnu/packages/file-systems.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages/file-systems.scm') diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index c64c0df727..4d6dc89fd9 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2020 Morgan Smith ;;; Copyright © 2021 raid5atemyhomework ;;; Copyright © 2021 Stefan Reichör +;;; Copyright © 2021 Noisytoot ;;; ;;; This file is part of GNU Guix. ;;; @@ -1526,3 +1527,35 @@ your put them. TMSU maintains its own database and you simply gain an additional view, which you can mount where you like, based upon the tags you set up.") (license license:gpl3+))) + +(define-public udftools + (package + (name "udftools") + (version "2.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pali/udftools") + (commit version))) + (sha256 + (base32 + "1nl2s61znyzaap23zhbdg3znj6l6akr313fchn5wwvjzj8k70is9")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list (string-append "--docdir=" (assoc-ref %outputs "out") + "/share/doc/" ,name "-" ,version)))) + (native-inputs + `(("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (home-page "https://github.com/pali/udftools") + (synopsis "Tools to manage UDF file systems and DVD/CD-R(W) drives") + (description "@code{udftools} is a set of programs for reading +and modifying @acronym{UDF, Universal Disk Format} file systems. +@acronym{UDF, Universal Disk Format} is a file system mostly used for DVDs +and other optical media. It supports read-only media (DVD/CD-R) +and rewritable media that wears out (DVD/CD-RW).") + (license license:gpl2+))) -- cgit v1.2.3