diff options
author | EuAndreh <eu@euandre.org> | 2023-04-02 22:08:23 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-02 22:16:46 -0300 |
commit | 5c2836a338de43540b52bd519a9eae58d8d22890 (patch) | |
tree | 4489d8c6caf3afd49cff3638bc64e1a9f373fc4a /src | |
parent | src/org/euandre/packages.scm: Recover guile-heredoc, which is being used in prod (diff) | |
download | package-repository-5c2836a338de43540b52bd519a9eae58d8d22890.tar.gz package-repository-5c2836a338de43540b52bd519a9eae58d8d22890.tar.xz |
queue.scm: Add "pax-utils" package
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 5c2836a338de43540b52bd519a9eae58d8d22890
git notes --ref=refs/notes/ci-data show 5c2836a338de43540b52bd519a9eae58d8d22890
Exit status: 0
Duration: 0
Diffstat (limited to 'src')
-rw-r--r-- | src/org/euandre/queue.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm index 931cd1d..7fd313f 100644 --- a/src/org/euandre/queue.scm +++ b/src/org/euandre/queue.scm @@ -2,6 +2,7 @@ #:use-module ((gnu build linux-container) #:prefix container:) #:use-module ((guix licenses) #:prefix license:) #:use-module ((srfi srfi-1) #:prefix s1:) + #:use-module (guix build-system meson) #:use-module (guix build-system gnu) #:use-module (guix build-system python) #:use-module (guix build-system trivial) @@ -353,6 +354,29 @@ definite Sendmail-ish flavor, but the inside is completely different.") +(define-public pax-utils + (package + (name "pax-utils") + (version "1.3.7") + (source + (origin + (method url-fetch) + (uri + (string-append + "https://distfiles.gentoo.org/distfiles/pax-utils-" + version + ".tar.xz")) + (sha256 + (base32 "16lkrvgffprwnd8w3bbiph6zq72cbaqn7p6an3vmrlk8jv9650qh")))) + (build-system meson-build-system) + (synopsis "ELF utils that can check files for security relevant properties") + (description + "A suite of ELF tools to aid auditing systems. Contains various ELF +related utils for ELF32, ELF64 binaries useful for displaying PaX and security +information on a large group of binary files.") + (home-page "https://distfiles.gentoo.org/distfiles/pax-utils-1.3.7.tar.xz") + (license license:gpl2))) + (define-public (hunspell-dictionary-utf8 dict-name) (package (name (string-append "hunspell-dict-" dict-name "-utf8")) @@ -1676,6 +1700,7 @@ connections correctly."))) (list + pax-utils hunspell-dict-en-utf8 hunspell-dict-pt-utf8 hunspell-dict-fr-utf8 |