gnu: masscan: Don't use unstable tarball.

* gnu/packages/admin.scm (masscan)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2018-12-23 10:47:18 +01:00
parent ab213bfd04
commit e956d76ddb
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 8 deletions

View File

@ -2565,14 +2565,15 @@ on systems running the Linux kernel.")
(package
(name "masscan")
(version "1.0.5")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/robertdavidgraham/masscan"
"/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0wxddsgyx27z45906icdhdbfsvfj8ij805208qpqjx46i0lnjs50"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/robertdavidgraham/masscan.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0q0c7bsf0pbl8napry1qyg0gl4pd8wn872h4mz9b56dx4rx90vqg"))))
(build-system gnu-build-system)
(inputs
`(("libpcap" ,libpcap)))