mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
missing define-public
This commit is contained in:
parent
1d3269df4f
commit
e60f315ecf
1 changed files with 13 additions and 12 deletions
|
@ -3,15 +3,16 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system python))
|
#:use-module (guix build-system python))
|
||||||
|
|
||||||
(package
|
(define-public python-ssh-audit
|
||||||
(name "python-ssh-audit")
|
(package
|
||||||
(version "2.5.0")
|
(name "python-ssh-audit")
|
||||||
(source (origin
|
(version "2.5.0")
|
||||||
(method url-fetch)
|
(source (origin
|
||||||
(uri (pypi-uri "ssh-audit" version))
|
(method url-fetch)
|
||||||
(sha256 (base32 "1dh5pwa0lhm1a5nvq5abwkqndivk37af5v3a4gj9g6bvpi8zg5rk"))))
|
(uri (pypi-uri "ssh-audit" version))
|
||||||
(build-system python-build-system)
|
(sha256 (base32 "1dh5pwa0lhm1a5nvq5abwkqndivk37af5v3a4gj9g6bvpi8zg5rk"))))
|
||||||
(home-page "https://github.com/jtesta/ssh-audit")
|
(build-system python-build-system)
|
||||||
(synopsis "An SSH server & client configuration security auditing tool")
|
(home-page "https://github.com/jtesta/ssh-audit")
|
||||||
(description "An SSH server & client configuration security auditing tool")
|
(synopsis "An SSH server & client configuration security auditing tool")
|
||||||
(license #f))
|
(description "An SSH server & client configuration security auditing tool")
|
||||||
|
(license #f)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue