gnu: tinmop: Update to 0.9.2.
* gnu/packages/web-browsers.scm (tinmop): Update to 0.9.2. [inputs]: Move nano, openssl and xdg-utils to... [native-inputs]: ... here. Add automake, autoconf and mandoc. Remove curl and gnupg. [arguments]: Add 'fix-configure.ac' phase. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
18a85213ae
commit
612fe425b4
|
@ -816,7 +816,7 @@ http, and https via third-party applications.")
|
||||||
(define-public tinmop
|
(define-public tinmop
|
||||||
(package
|
(package
|
||||||
(name "tinmop")
|
(name "tinmop")
|
||||||
(version "0.8.3")
|
(version "0.9.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -825,13 +825,17 @@ http, and https via third-party applications.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "117p1wxi5swmqw429qrswxz2zvp1dcaw2145gk6zxlgwln48qxl8"))))
|
(base32 "1cgx2g2kryfmcwqzzjzcpbdc6zzj10xc52gz0cj2dx5ylc0yg7k3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("curl" ,curl)
|
`(("automake" ,automake)
|
||||||
|
("autoreconf" ,autoconf)
|
||||||
("gettext" ,gnu-gettext)
|
("gettext" ,gnu-gettext)
|
||||||
("gnupg" ,gnupg)
|
("mandoc" , mandoc)
|
||||||
("sbcl" ,sbcl)))
|
("nano" ,nano)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("sbcl" ,sbcl)
|
||||||
|
("xdg-utils" ,xdg-utils)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("access" ,sbcl-access)
|
`(("access" ,sbcl-access)
|
||||||
("alexandria" ,sbcl-alexandria)
|
("alexandria" ,sbcl-alexandria)
|
||||||
|
@ -854,8 +858,6 @@ http, and https via third-party applications.")
|
||||||
("local-time" ,sbcl-local-time)
|
("local-time" ,sbcl-local-time)
|
||||||
("log4cl" ,sbcl-log4cl)
|
("log4cl" ,sbcl-log4cl)
|
||||||
("marshal" ,sbcl-marshal)
|
("marshal" ,sbcl-marshal)
|
||||||
("nano" ,nano)
|
|
||||||
("openssl" ,openssl)
|
|
||||||
("osicat" ,sbcl-osicat)
|
("osicat" ,sbcl-osicat)
|
||||||
("parse-number" ,sbcl-parse-number)
|
("parse-number" ,sbcl-parse-number)
|
||||||
("percent-encoding" ,sbcl-percent-encoding)
|
("percent-encoding" ,sbcl-percent-encoding)
|
||||||
|
@ -863,8 +865,7 @@ http, and https via third-party applications.")
|
||||||
("sxql-composer" ,sbcl-sxql-composer)
|
("sxql-composer" ,sbcl-sxql-composer)
|
||||||
("tooter" ,sbcl-tooter)
|
("tooter" ,sbcl-tooter)
|
||||||
("unix-opts" ,sbcl-unix-opts)
|
("unix-opts" ,sbcl-unix-opts)
|
||||||
("usocket" ,sbcl-usocket)
|
("usocket" ,sbcl-usocket)))
|
||||||
("xdg-utils" ,xdg-utils)))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
#:strip-binaries? #f
|
#:strip-binaries? #f
|
||||||
|
@ -874,11 +875,24 @@ http, and https via third-party applications.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "HOME" "/tmp")
|
(setenv "HOME" "/tmp")
|
||||||
#t))
|
#t))
|
||||||
|
(add-after 'unpack 'fix-configure.ac
|
||||||
|
(lambda _
|
||||||
|
(delete-file "configure")
|
||||||
|
(substitute* "configure.ac"
|
||||||
|
(("AC_PATH_PROG.+CURL")
|
||||||
|
"dnl")
|
||||||
|
(("AC_PATH_PROGS.+GIT")
|
||||||
|
"dnl")
|
||||||
|
(("AC_PATH_PROG.+GPG")
|
||||||
|
"dnl"))
|
||||||
|
#t))
|
||||||
(add-after 'configure 'fix-asdf
|
(add-after 'configure 'fix-asdf
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
(("LISP_COMPILER) ")
|
(("LISP_COMPILER) ")
|
||||||
"LISP_COMPILER) --eval \"(require 'asdf)\" --eval \"(push \\\"$$(pwd)/\\\" asdf:*central-registry*)\" "))
|
(string-concatenate
|
||||||
|
'("LISP_COMPILER) --eval \"(require 'asdf)\" "
|
||||||
|
"--eval \"(push \\\"$$(pwd)/\\\" asdf:*central-registry*)\" "))))
|
||||||
#t)))))
|
#t)))))
|
||||||
(synopsis "Gemini and pleroma client with a terminal interface")
|
(synopsis "Gemini and pleroma client with a terminal interface")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue