Package Details: noir 1.1.0-2

Git Clone URL: https://aur.archlinux.org/noir.git (read-only, click to copy)
Package Base: noir
Description: Attack surface detector that identifies endpoints by static analysis.
Upstream URL: https://github.com/owasp-noir/noir
Keywords: noir owasp
Licenses: MIT
Submitter: chrisdev
Maintainer: chrisdev (hahwul)
Last Packager: hahwul
Votes: 0
Popularity: 0.000000
First Submitted: 2025-11-17 17:51 (UTC)
Last Updated: 2026-06-24 03:41 (UTC)

Dependencies (0)

Required by (0)

Sources (2)

Latest Comments

hahwul commented on 2026-06-24 03:42 (UTC) (edited on 2026-06-24 03:42 (UTC) by hahwul)

Thanks for the patch and report, @naoy! I've updated the PKGBUILD accordingly. Should build cleanly now :)

naoy commented on 2026-06-23 15:29 (UTC) (edited on 2026-06-23 21:21 (UTC) by naoy)

In order for this package to build correctly, a patch is required to ensure the LICENSE file is also downloaded.

diff --git a/PKGBUILD b/PKGBUILD
index 8e213bd..3aa5716 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,10 +6,16 @@ pkgdesc="Attack surface detector that identifies endpoints by static analysis."
 arch=('x86_64')
 url="https://github.com/owasp-noir/noir"
 license=('MIT')
-source=("noir-${pkgver}::https://github.com/owasp-noir/noir/releases/download/v${pkgver}/noir-v${pkgver}-linux-x86_64")
-sha256sums=('SKIP')
+source=(
+    "noir-${pkgver}::https://github.com/owasp-noir/noir/releases/download/v${pkgver}/noir-v${pkgver}-linux-x86_64"
+    "LICENSE::https://raw.githubusercontent.com/owasp-noir/noir/refs/tags/v${pkgver}/LICENSE"
+)
+sha256sums=(
+    'SKIP'
+    'SKIP'
+)

 package() {
   install -Dm755 "${srcdir}/noir-${pkgver}" "${pkgdir}/usr/bin/noir"
-  install -Dm644 "${srcdir}/../LICENSE" "${pkgdir}/usr/share/licenses/noir/LICENSE"
+  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/noir/LICENSE"
 }

hahwul commented on 2026-05-02 14:09 (UTC)

Hi @chrisdev, Thank you very much for adding me as co-maintainer! I'll update the package to the latest upstream version shortly. Appreciate your help!

chrisdev commented on 2026-05-02 01:57 (UTC)

Hi @hahwul, now you're a co-maintainer.

hahwul commented on 2026-05-02 01:50 (UTC)

Hi @chrisdev, I'm the original author/maintainer of OWASP Noir (https://github.com/owasp-noir/noir, @hahwul). The current AUR package is quite outdated (0.25.1). Could you please add me as co-maintainer or disown the package so I can take over and keep it up-to-date? Thank you!