From e40cc524da5ffe65776ea1fd832ff7caf5da8ee1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 29 Mar 2026 01:00:00 +0100 Subject: [PATCH] gnu: bcachefs-linux-module: Update to 1.37.4. * gnu/packages/file-systems.scm (bcachefs-linux-module): Update to 1.37.4. [arguments]: Remove the now-obsolete 'patch-source phase. I'm surprised that it ever worked as it broke Makefile syntax. Change-Id: Ice76e94bca91901e565eef57469091a7fb891ab1 --- gnu/packages/file-systems.scm | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 1bf5821748..db1e79c30b 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -969,7 +969,7 @@ minimal bcachefs-tools package. It is meant to be used in initrds.") (define-public bcachefs-linux-module (package (name "bcachefs-linux-module") - (version "1.35.1") + (version "1.37.4") (source (origin (method git-fetch) @@ -978,7 +978,7 @@ minimal bcachefs-tools package. It is meant to be used in initrds.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1jn7fqlvhr0iazfx31wamvmf3qmgrzlf9ghvz8qazk8b6ipv77fn")))) + (base32 "17041jphzbg0ppxlc1acr3d73zyn02spjvi5my30wak8xh9n6nan")))) (build-system linux-module-build-system) (arguments (list @@ -992,12 +992,6 @@ minimal bcachefs-tools package. It is meant to be used in initrds.") (with-output-to-file ".version" (lambda () (display #$version))))) - (add-after 'unpack 'patch-source - (lambda _ - (substitute* "Makefile" - ;; Remove unnecessary dependencies - (("^.*PKG_CONFIG.*$") - "")))) (add-before 'configure 'prepare-build-directory (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "install_dkms"