mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libnet: Update to 1.2.
* gnu/packages/networking.scm (libnet): Update to 1.2. [source]: Switch to URL-FETCH. [arguments]: Remove chdir phase. [native-inputs]: Remove AUTOCONF, AUTOMAKE, and LIBTOOL. Add PERL.
This commit is contained in:
parent
dd61cd85f1
commit
41cb238281
1 changed files with 8 additions and 13 deletions
|
@ -2121,32 +2121,27 @@ (define-public bmon
|
|||
(define-public libnet
|
||||
(package
|
||||
(name "libnet")
|
||||
(version "1.2-rc3")
|
||||
(version "1.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sam-github/libnet")
|
||||
(commit (string-append "libnet-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/libnet/libnet/releases/download"
|
||||
"/v" version "/libnet-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0cy8w4g5rv963v4p6iq3333kxgdddx2lywp70xf62553a25xhhs4"))))
|
||||
"19ys9vxk6fg70yzzdxsphfr0rwzgxxhr9b3ykhpg7rfray0qd96a"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "libnet") #t))
|
||||
(add-before 'build 'build-doc
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "-C" "doc" "doc"
|
||||
make-flags))))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)
|
||||
("doxygen" ,doxygen)))
|
||||
`(;; To build the documentation, Doxygen and Perl is required.
|
||||
("doxygen" ,doxygen)
|
||||
("perl" ,perl)))
|
||||
(home-page "https://sourceforge.net/projects/libnet-dev/")
|
||||
(synopsis "Framework for low-level network packet construction")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue