diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-10-10 15:14:30 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-10-10 17:35:23 +0300 |
commit | 0a221730a46660d0fc84cf4f6bf65259688178e7 (patch) | |
tree | 4f27fa5cb00539cd2b2f610647cb7aee1b343777 /gnu/packages/lsof.scm | |
parent | 39df1ac928beeeb316980c5ecb5dfaae7053460d (diff) | |
download | guix-0a221730a46660d0fc84cf4f6bf65259688178e7.tar guix-0a221730a46660d0fc84cf4f6bf65259688178e7.tar.gz |
gnu: lsof: Fix build with Linux 6.9
* gnu/packages/lsof.scm(lsof)[source]: Add patch.
* gnu/packages/patches/lsof-compat-linux-6.9.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
Change-Id: I98b895ecaf1b952bfd33ea7ae3af70b1c39a0a94
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/lsof.scm')
-rw-r--r-- | gnu/packages/lsof.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/lsof.scm b/gnu/packages/lsof.scm index 7d849c80b5..a6ac0306de 100644 --- a/gnu/packages/lsof.scm +++ b/gnu/packages/lsof.scm @@ -46,7 +46,8 @@ (file-name (git-file-name name version)) (sha256 (base32 - "1v32407al4j0hhcph95lv4xvr9h012lii29iyq41iwj39zwfavax")))) + "1v32407al4j0hhcph95lv4xvr9h012lii29iyq41iwj39zwfavax")) + (patches (search-patches "lsof-compat-linux-6.9.patch")))) (build-system gnu-build-system) (native-inputs (list automake autoconf |