diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/cybersecurity.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/cybersecurity.scm')
-rw-r--r-- | gnu/packages/cybersecurity.scm | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gnu/packages/cybersecurity.scm b/gnu/packages/cybersecurity.scm index e4614e908e..c61342c0ba 100644 --- a/gnu/packages/cybersecurity.scm +++ b/gnu/packages/cybersecurity.scm @@ -44,7 +44,7 @@ (base32 "08ms7x4af07970ij9899l75sghnxsa7xyx73gkn6gv0l05p1hqfw")))) (build-system python-build-system) (propagated-inputs - `(("python-capstone" ,python-capstone))) + (list python-capstone)) (home-page "http://shell-storm.org/project/ROPgadget/") (synopsis "Semiautomatic return oriented programming") (description @@ -68,23 +68,22 @@ chains of gadgets to execute system calls.") (arguments '(#:tests? #f)) ;XXX: needs a specific version of unicorn (propagated-inputs - `(("capstone" ,capstone) - ("python-dateutil" ,python-dateutil) - ("python-intervaltree" ,python-intervaltree) - ("python-mako" ,python-mako) - ("python-packaging" ,python-packaging) - ("python-paramiko" ,python-paramiko) - ("python-psutil" ,python-psutil) - ("python-pyelftools" ,python-pyelftools) - ("python-pygments" ,python-pygments) - ("python-pyserial" ,python-pyserial) - ("python-pysocks" ,python-pysocks) - ("python-requests" ,python-requests) - ("ropgadget" ,ropgadget) - ("python-six" ,python-six) - ("python-sortedcontainers" - ,python-sortedcontainers) - ("unicorn" ,unicorn))) + (list capstone + python-dateutil + python-intervaltree + python-mako + python-packaging + python-paramiko + python-psutil + python-pyelftools + python-pygments + python-pyserial + python-pysocks + python-requests + ropgadget + python-six + python-sortedcontainers + unicorn)) (home-page "https://github.com/Gallopsled/pwntools") (synopsis "Capture-the-flag (CTF) framework and exploit development library") |