summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-08-26 11:28:53 +0200
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-10-05 06:45:39 +0200
commite52cf5f1744bb5804e3b8cb5cf6ee6be87568fba (patch)
tree5f196414598bbea60846883a979d7b0180f8d9d4
parent22c40b7b11bd7d421a4f9c48ec4d9e8abaf505e0 (diff)
gnu: fortify-headers: Update to 2.3.3.
* gnu/packages/suckless.scm (fortify-headers)[source]: Switch to git-fetch. [description]: Fix max column. Change-Id: I42e3da676e6089aa937e9bc7e0df9dfeb2cf5eea Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r--gnu/packages/suckless.scm16
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 9f61d17cbad..ac56c8d816d 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -838,14 +838,16 @@ environment variable.")
(define-public fortify-headers
(package
(name "fortify-headers")
- (version "1.1")
+ (version "2.3.3")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://dl.2f30.org/releases/"
- "fortify-headers-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "git://git.2f30.org/fortify-headers/")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1dhz41jq1azcf7rbvga8w6pnx19l1j9r6jwj8qrlrfnjl9hdi9bb"))))
+ (base32 "1w2jrscncq1jrg4wnsrr3a00p6h9mvkk3g1qkh1jdw1m747yjsci"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no tests
@@ -860,8 +862,8 @@ environment variable.")
(description
"This is a standalone implementation of fortify source. It provides
compile time buffer checks. It is libc-agnostic and simply overlays the
-system headers by using the @code{#include_next} extension found in GCC. It was
-initially intended to be used on musl-based Linux distributions.
+system headers by using the @code{#include_next} extension found in GCC. It
+was initially intended to be used on musl-based Linux distributions.
@itemize
@item It is portable, works on *BSD, Linux, Solaris and possibly others.