mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: profanity: Make some cosmetic changes.
* gnu/packages/messaging.scm (profanity): Make some cosmetic changes. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
2c0b715389
commit
d257697dc1
1 changed files with 27 additions and 24 deletions
|
@ -1774,22 +1774,35 @@ (define-public profanity
|
||||||
(package
|
(package
|
||||||
(name "profanity")
|
(name "profanity")
|
||||||
(version "0.9.5")
|
(version "0.9.5")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://profanity-im.github.io/profanity-"
|
(method url-fetch)
|
||||||
version ".tar.gz"))
|
(uri
|
||||||
(sha256
|
(string-append "https://profanity-im.github.io/profanity-"
|
||||||
(base32
|
version ".tar.gz"))
|
||||||
"00j9l9v62rz9hprgiy1vrz8v3v59ph18h8kskqxr31fgqvjv5xr3"))))
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00j9l9v62rz9hprgiy1vrz8v3v59ph18h8kskqxr31fgqvjv5xr3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
`(#:configure-flags
|
||||||
(list "--enable-c-plugins"
|
(list
|
||||||
"--enable-otr"
|
"--enable-notifications"
|
||||||
"--enable-omemo"
|
"--enable-c-plugins"
|
||||||
"--enable-pgp"
|
"--enable-otr"
|
||||||
"--enable-icons"
|
"--enable-pgp"
|
||||||
"--enable-notifications")))
|
"--enable-omemo"
|
||||||
|
"--enable-icons")))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("autoconf-archive" ,autoconf-archive)
|
||||||
|
("automake" ,automake)
|
||||||
|
("cmocka" ,cmocka)
|
||||||
|
("gtk+" ,gtk+-2)
|
||||||
|
("libnotify" ,libnotify)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("libsignal-protocol-c" ,libsignal-protocol-c)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("curl" ,curl)
|
`(("curl" ,curl)
|
||||||
("expat" ,expat)
|
("expat" ,expat)
|
||||||
|
@ -1801,16 +1814,6 @@ (define-public profanity
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("sqlite" ,sqlite)))
|
("sqlite" ,sqlite)))
|
||||||
(native-inputs
|
|
||||||
`(("autoconf" ,autoconf)
|
|
||||||
("autoconf-archive" ,autoconf-archive)
|
|
||||||
("automake" ,automake)
|
|
||||||
("cmocka" ,cmocka)
|
|
||||||
("gtk+" ,gtk+-2)
|
|
||||||
("libnotify" ,libnotify)
|
|
||||||
("libtool" ,libtool)
|
|
||||||
("libsignal-protocol-c" ,libsignal-protocol-c)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(synopsis "Console-based XMPP client")
|
(synopsis "Console-based XMPP client")
|
||||||
(description "Profanity is a console based XMPP client written in C
|
(description "Profanity is a console based XMPP client written in C
|
||||||
using ncurses and libmesode, inspired by Irssi.")
|
using ncurses and libmesode, inspired by Irssi.")
|
||||||
|
|
Loading…
Reference in a new issue