gnu: gobby: Update to 0.5.0.
* gnu/packages/gobby.scm (gobby): Update to 0.5.0. [inputs]: Remove libnet6 and obby. Add libinfinity. Sort. [arguments]: Add move-executable phase.
This commit is contained in:
parent
6a84ec8eb3
commit
97291c0c7c
1 changed files with 14 additions and 7 deletions
|
@ -101,7 +101,7 @@ documents in one session. Obby is used by the Gobby collaborative editor.")
|
||||||
(define-public gobby
|
(define-public gobby
|
||||||
(package
|
(package
|
||||||
(name "gobby")
|
(name "gobby")
|
||||||
(version "0.4.13")
|
(version "0.5.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://releases.0x539.de/gobby/gobby-"
|
(uri (string-append "http://releases.0x539.de/gobby/gobby-"
|
||||||
|
@ -109,21 +109,28 @@ documents in one session. Obby is used by the Gobby collaborative editor.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0w8q01lf6bcdz537b29m7rwlbc7k87b12vnpm1h6219ypvzqkgcc"))))
|
"165x0r668ma5blziisvbr8qig3jw9hf7i6w8r7wwvz3wsac3bswc"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("intltool" ,intltool)))
|
("intltool" ,intltool)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libxml++-2" ,libxml++-2)
|
`(("gnutls" ,gnutls)
|
||||||
("gnutls" ,gnutls)
|
("gsasl" ,gsasl)
|
||||||
("gtkmm-2" ,gtkmm-2)
|
("gtkmm-2" ,gtkmm-2)
|
||||||
("gtksourceview-2" ,gtksourceview-2)
|
("gtksourceview-2" ,gtksourceview-2)
|
||||||
("libnet6" ,libnet6)
|
("libinfinity" ,libinfinity)
|
||||||
("obby" ,obby)))
|
("libxml++-2" ,libxml++-2)))
|
||||||
(arguments
|
(arguments
|
||||||
;; Required by libsigc++.
|
;; Required by libsigc++.
|
||||||
`(#:configure-flags '("CXXFLAGS=-std=c++11")))
|
`(#:configure-flags '("CXXFLAGS=-std=c++11")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'move-executable
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(with-directory-excursion (assoc-ref outputs "out")
|
||||||
|
(rename-file "bin/gobby-0.5" "bin/gobby"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://gobby.github.io/")
|
(home-page "https://gobby.github.io/")
|
||||||
(synopsis "Collaborative editor")
|
(synopsis "Collaborative editor")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue