mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-11 00:18:06 -05:00
* Add unbuilt updated pip packages to updates-2025-02-06-00-18 * Add unbuilt updated ruby gem packages to updates-2025-02-06-00-18 * Add built packages for linux/386 to updates-2025-02-06-00-18 * Add built packages for linux/amd64 to updates-2025-02-06-00-18 * Add built packages for linux/arm/v7 to updates-2025-02-06-00-18 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
789 B
Ruby
23 lines
789 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Sqlmap < Pip
|
|
description 'sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers.'
|
|
homepage 'https://sqlmap.org/'
|
|
version "1.9.2-#{CREW_PY_VER}"
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e324d9c57b209be96ebf969ad3a5058251fa2d7c28370812e1708d5d1f49a06f',
|
|
armv7l: 'e324d9c57b209be96ebf969ad3a5058251fa2d7c28370812e1708d5d1f49a06f',
|
|
i686: '007aae2dab735a9639580c5c9e3e1d7c049c7690b3ea5e3461f2cdab453138fc',
|
|
x86_64: 'f4a678be619e5b59fc4aaa75bb6b423357dc65af6a878abc344b801fe1d0946e'
|
|
})
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
|
|
no_source_build
|
|
end
|