[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/36: gnu: cryptsetup: Update to 2.6.1.
From: |
guix-commits |
Subject: |
01/36: gnu: cryptsetup: Update to 2.6.1. |
Date: |
Wed, 14 Feb 2024 04:31:11 -0500 (EST) |
jpoiret pushed a commit to branch core-updates-glibc-2.39
in repository guix.
commit 20cddb18f83ca3d9eb348efc55042c8b6b0e0962
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Fri Jan 12 13:17:53 2024 +0100
gnu: cryptsetup: Update to 2.6.1.
* gnu/packages/cryptsetup.scm (cryptsetup): Update to 2.6.1. Disable
external
tokens for now.
Change-Id: I5610cabfbd46d010a8241430d8d90f5920847c04
---
gnu/packages/cryptsetup.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm
index 3bdc68ae5a..3cb669206a 100644
--- a/gnu/packages/cryptsetup.scm
+++ b/gnu/packages/cryptsetup.scm
@@ -30,12 +30,13 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages popt)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages ruby)
#:use-module (gnu packages web))
(define-public cryptsetup
(package
(name "cryptsetup")
- (version "2.3.7")
+ (version "2.6.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kernel.org/linux/utils/cryptsetup/v"
@@ -43,7 +44,7 @@
"/cryptsetup-" version ".tar.xz"))
(sha256
(base32
- "1a97rvi6arsj8dikh1qsvixx9rizm89k155q2ypifqlqllr530v1"))))
+ "14s6vbb9llpgnhmv0badxxzhi73jp4vyvp8swk4bjah7l5jys3a1"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
@@ -54,12 +55,16 @@
"--with-crypto_backend=gcrypt"
;; GRUB 2.06 supports LUKS2, but does it reliably support all set-ups…?
"--with-default-luks-format=LUKS1"
+ ;; External tokens would need an env variable to work on Guix, and we
+ ;; don't have users for it yet.
+ "--disable-external-tokens"
+ "--disable-ssh-token"
;; libgcrypt is not found otherwise when cross-compiling.
;; <https://issues.guix.gnu.org/63864>
(string-append "--with-libgcrypt-prefix="
(assoc-ref %build-inputs "libgcrypt")))))
(native-inputs
- (list pkg-config))
+ (list pkg-config ruby-asciidoctor))
(inputs
(list argon2
json-c
- branch core-updates-glibc-2.39 created (now fabcd3aef9), guix-commits, 2024/02/14
- 02/36: gnu: Add libdevmapper-propagated-inputs., guix-commits, 2024/02/14
- 01/36: gnu: cryptsetup: Update to 2.6.1.,
guix-commits <=
- 06/36: gnu: lvm2-static: Properly handle eudev dependency in pkg-config., guix-commits, 2024/02/14
- 09/36: gnu: ffmpeg: Fix builds., guix-commits, 2024/02/14
- 12/36: gnu: gcc: Patch crypt out of bundled libsanitizer., guix-commits, 2024/02/14
- 07/36: gnu: cryptsetup-static: Fix static build., guix-commits, 2024/02/14
- 11/36: gnu: gcc: Simplify application of Hurd-specific pthread patch., guix-commits, 2024/02/14
- 13/36: gnu: libxcrypt: Remove python from native-inputs., guix-commits, 2024/02/14
- 14/36: gnu: python: Add libxcrypt dependency., guix-commits, 2024/02/14
- 19/36: gnu: eudev: Update to 3.2.14., guix-commits, 2024/02/14
- 20/36: services: udev: Rewrite udev-rule to use file->udev-rule., guix-commits, 2024/02/14
- 28/36: gnu: apr: Add libxcrypt dependency., guix-commits, 2024/02/14