diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-02-16 08:20:40 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-02-22 19:31:06 +0100 |
| commit | e4e3bcc42b13f20d90406590264429c2233e445f (patch) | |
| tree | 2cb53bf094cf744876b9dd83f8882df230c21cef | |
| parent | f333fb810d0ef5033db217d2bf12c06646558c70 (diff) | |
gnu: ropgadget: Update to 7.7.
* gnu/packages/cybersecurity.scm (ropgadget): Update to 7.7.
[sources]: Switch to git-fetch.
Merges guix/guix!6469
Change-Id: I504c0ad39acdb837dd157bd1715a20e6783073b7
| -rw-r--r-- | gnu/packages/cybersecurity.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/cybersecurity.scm b/gnu/packages/cybersecurity.scm index 148ed9419f1..7fad1bce854 100644 --- a/gnu/packages/cybersecurity.scm +++ b/gnu/packages/cybersecurity.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com> +;;; Copyright © 2026 Cayetano Santos <csantosb@inventati.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -163,13 +164,16 @@ from a single ECU up to whole cars.") (define-public ropgadget (package (name "ropgadget") - (version "7.6") + (version "7.7") (source (origin - (method url-fetch) - (uri (pypi-uri "ropgadget" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/JonathanSalwan/ROPgadget/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1hvl25j3fbiwihqa2p8a5i27h97pgspxp2ndwwn3l1r78r7cb0w8")))) + (base32 "0g87qz8hfiajl1v5z5rxama4531hi9gabzbgkhrbavjj7v3xgavw")))) (build-system pyproject-build-system) (arguments (list |
