gnu: masscan: Don't use unstable tarball.
* gnu/packages/admin.scm (masscan)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
ab213bfd04
commit
e956d76ddb
|
@ -2565,14 +2565,15 @@ on systems running the Linux kernel.")
|
||||||
(package
|
(package
|
||||||
(name "masscan")
|
(name "masscan")
|
||||||
(version "1.0.5")
|
(version "1.0.5")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/robertdavidgraham/masscan"
|
(method git-fetch)
|
||||||
"/archive/" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(url "https://github.com/robertdavidgraham/masscan.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0q0c7bsf0pbl8napry1qyg0gl4pd8wn872h4mz9b56dx4rx90vqg"))))
|
||||||
"0wxddsgyx27z45906icdhdbfsvfj8ij805208qpqjx46i0lnjs50"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libpcap" ,libpcap)))
|
`(("libpcap" ,libpcap)))
|
||||||
|
|
Loading…
Reference in New Issue