mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: lsof: Update to 4.88.
Reported by nebuli on #guix. * gnu/packages/lsof.scm (%ftp-base): New variable. (lsof): Update to 4.88. Add /OLD as alternate URL.
This commit is contained in:
parent
bff39668b9
commit
9a0569aafe
1 changed files with 11 additions and 5 deletions
|
@ -23,16 +23,22 @@ (define-module (gnu packages lsof)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages perl))
|
#:use-module (gnu packages perl))
|
||||||
|
|
||||||
|
(define %ftp-base
|
||||||
|
"ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/")
|
||||||
|
|
||||||
(define-public lsof
|
(define-public lsof
|
||||||
(package
|
(package
|
||||||
(name "lsof")
|
(name "lsof")
|
||||||
(version "4.87")
|
(version "4.88")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_"
|
(uri (list (string-append %ftp-base "lsof_"
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2")
|
||||||
(sha256 (base32
|
(string-append %ftp-base "OLD/lsof_"
|
||||||
"0b6si72sml7gr9784ak491cxxbm9mx5bh174yg6rrirbv04kgpfz"))))
|
version ".tar.bz2")))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16y9wm26rg81mihnzcbdg8h8vhxmq8kn62ssxb8cqydp4q79nvzy"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("perl" ,perl)))
|
(inputs `(("perl" ,perl)))
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in a new issue