gnu : nicotine+: Update to 3.2.1.
* gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1. [source]: Delete network requried tests in snippet. [arguments]: Remove trailing #t. Replae 'check phase to run proper test. [inputs]: Add bash-minimal, gspell, libappindicator. [native-inputs]: Remove python-pytest. Add xvfb-run. [home-page]: Update URL. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
53d986215f
commit
66a4a5ecb2
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
||||||
|
;;; Copyright © 2022 Fatima Toothpaste <fatimatoothpaste@disroot.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -21,23 +22,29 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
#:use-module (gnu packages bash)
|
||||||
|
#:use-module (gnu packages freedesktop)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages mp3)
|
||||||
#:use-module (gnu packages mp3))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
(define-public nicotine+
|
(define-public nicotine+
|
||||||
(package
|
(package
|
||||||
(name "nicotine+")
|
(name "nicotine+")
|
||||||
(version "2.1.2")
|
(version "3.2.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Nicotine-Plus/nicotine-plus")
|
(url "https://github.com/Nicotine-Plus/nicotine-plus")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256 (base32 "18rra8yqjr10z23chzcp53ncbd5fhm0iqgqxpbxfq7a10za02v6l"))))
|
(sha256 (base32 "1x08z5lvkdl62dkc11vrsackgzsh1vr9vp3vgsgfzjyrvlsybmfw"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
;; Remove test that relies on network access.
|
||||||
|
(snippet '(delete-file-recursively "test/integration"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:imported-modules ((guix build glib-or-gtk-build-system)
|
`(#:imported-modules ((guix build glib-or-gtk-build-system)
|
||||||
|
@ -55,18 +62,20 @@
|
||||||
"/bin/nicotine"))
|
"/bin/nicotine"))
|
||||||
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
||||||
(wrap-program prog
|
(wrap-program prog
|
||||||
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
|
||||||
#t)))
|
|
||||||
(add-after 'wrap-program 'glib-or-gtk-wrap
|
(add-after 'wrap-program 'glib-or-gtk-wrap
|
||||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
|
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
|
||||||
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
|
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
|
||||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)))))
|
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "xvfb-run" "python" "-m" "unittest")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list gtk+ python-pygobject python-pytaglib))
|
(list bash-minimal gspell gtk+ python-pygobject libappindicator python-pytaglib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)
|
(list gettext-minimal xvfb-run))
|
||||||
("gettext" ,gettext-minimal)))
|
(home-page "https://nicotine-plus.org/")
|
||||||
(home-page "https://nicotine-plus.github.io/nicotine-plus/")
|
|
||||||
(synopsis "Graphical client for Soulseek")
|
(synopsis "Graphical client for Soulseek")
|
||||||
(description
|
(description
|
||||||
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
|
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
|
||||||
|
|
Reference in New Issue