mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: megacmd: Update to 1.5.1 and add libuv dependency.
* gnu/packages/sync.scm (megacmd): Update to 1.5.1. [inputs]: Remove labels and add LIBUV. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
6e0ccf50ac
commit
67b524360d
1 changed files with 17 additions and 15 deletions
|
@ -54,6 +54,7 @@ (define-module (gnu packages sync)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages kde-frameworks)
|
#:use-module (gnu packages kde-frameworks)
|
||||||
|
#:use-module (gnu packages libevent)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages lua)
|
#:use-module (gnu packages lua)
|
||||||
#:use-module (gnu packages ocaml)
|
#:use-module (gnu packages ocaml)
|
||||||
|
@ -217,7 +218,7 @@ (define-public nextcloud-client
|
||||||
(define-public megacmd
|
(define-public megacmd
|
||||||
(package
|
(package
|
||||||
(name "megacmd")
|
(name "megacmd")
|
||||||
(version "1.1.0")
|
(version "1.5.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -227,28 +228,29 @@ (define-public megacmd
|
||||||
(recursive? #t)))
|
(recursive? #t)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"004j8m3xs6slx03g2g6wzr97myl2v3zc09wxnfar5c62a625pd53"))
|
"12v46jyxdgp2qqdpmd084d60hd5srjbgwpk082b3rp5dl7yg1rd8"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
;; XXX: Disabling tests because they depend on libgtest.la from googletest,
|
;; XXX: Disabling tests because they depend on libgtest.la from googletest,
|
||||||
;; which is not installed for unclear reasons.
|
;; which is not installed for unclear reasons.
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
(list #:tests? #f
|
||||||
#:configure-flags '("--with-pcre")))
|
#:configure-flags #~'("--with-pcre")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake libtool))
|
(list autoconf automake libtool))
|
||||||
(inputs
|
(inputs
|
||||||
`(("c-ares" ,c-ares)
|
(list c-ares
|
||||||
("crypto++" ,crypto++)
|
crypto++
|
||||||
("curl" ,curl)
|
curl
|
||||||
("freeimage" ,freeimage)
|
freeimage
|
||||||
("gtest" ,googletest)
|
googletest
|
||||||
("openssl" ,openssl)
|
libuv
|
||||||
("pcre" ,pcre)
|
openssl
|
||||||
("readline" ,readline)
|
pcre
|
||||||
("sodium" ,libsodium)
|
readline
|
||||||
("sqlite3" ,sqlite)
|
libsodium
|
||||||
("zlib" ,zlib)))
|
sqlite
|
||||||
|
zlib))
|
||||||
(home-page "https://mega.nz/cmd")
|
(home-page "https://mega.nz/cmd")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Command Line Interactive and Scriptable Application to access mega.nz")
|
"Command Line Interactive and Scriptable Application to access mega.nz")
|
||||||
|
|
Loading…
Reference in a new issue