gnu: irssi: Update to 1.0.0.
* gnu/packages/irc.scm (irssi): Update to 1.0.0. [arguments]: Remove --with-ncurses configure flag. [native-inputs]: Move 'perl' to ... [inputs]: ... here. [home-page]: Use HTTPS.
This commit is contained in:
		
							parent
							
								
									1bd858cc14
								
							
						
					
					
						commit
						d9d23101ce
					
				
					 1 changed files with 7 additions and 9 deletions
				
			
		|  | @ -100,7 +100,7 @@ irssi, but graphical.") | ||||||
| (define-public irssi | (define-public irssi | ||||||
|   (package |   (package | ||||||
|     (name "irssi") |     (name "irssi") | ||||||
|     (version "0.8.20") |     (version "1.0.0") | ||||||
|     (source (origin |     (source (origin | ||||||
|              (method url-fetch) |              (method url-fetch) | ||||||
|              (uri (string-append "https://github.com/irssi/irssi/" |              (uri (string-append "https://github.com/irssi/irssi/" | ||||||
|  | @ -108,31 +108,29 @@ irssi, but graphical.") | ||||||
|                                  version ".tar.xz")) |                                  version ".tar.xz")) | ||||||
|              (sha256 |              (sha256 | ||||||
|               (base32 |               (base32 | ||||||
|                "0njh43xmpad9h5g6fp1805hrix1mwbbnk7p6qmlw9apm47lc90kq")))) |                "1f2gmr5nynagwi4wx3yprhzfpg4ww6r7ff395b0a48d0qqgkr2ka")))) | ||||||
|     (build-system gnu-build-system) |     (build-system gnu-build-system) | ||||||
|     (arguments |     (arguments | ||||||
|      `(#:phases |      `(#:phases | ||||||
|        (modify-phases %standard-phases |        (modify-phases %standard-phases | ||||||
|          (replace 'configure |          (replace 'configure | ||||||
|            (lambda* (#:key inputs outputs #:allow-other-keys) |            (lambda* (#:key inputs outputs #:allow-other-keys) | ||||||
|              (let ((out (assoc-ref outputs "out")) |              (let ((out (assoc-ref outputs "out"))) | ||||||
|                    (ncurses (assoc-ref inputs "ncurses"))) |  | ||||||
|                (setenv "CONFIG_SHELL" (which "bash")) |                (setenv "CONFIG_SHELL" (which "bash")) | ||||||
|                (zero? |                (zero? | ||||||
|                 (system* "./configure" |                 (system* "./configure" | ||||||
|                          (string-append "--prefix=" out) |                          (string-append "--prefix=" out) | ||||||
|                          (string-append "--with-ncurses=" ncurses) |  | ||||||
|                          (string-append "--with-proxy") |                          (string-append "--with-proxy") | ||||||
|                          (string-append "--with-socks") |                          (string-append "--with-socks") | ||||||
|                          (string-append "--with-bot"))))))))) |                          (string-append "--with-bot"))))))))) | ||||||
|     (inputs |     (inputs | ||||||
|      `(("glib" ,glib) |      `(("glib" ,glib) | ||||||
|        ("ncurses" ,ncurses) |        ("ncurses" ,ncurses) | ||||||
|        ("openssl" ,openssl))) |        ("openssl" ,openssl) | ||||||
|     (native-inputs |  | ||||||
|      `(("pkg-config" ,pkg-config) |  | ||||||
|        ("perl" ,perl))) |        ("perl" ,perl))) | ||||||
|     (home-page "http://www.irssi.org/") |     (native-inputs | ||||||
|  |      `(("pkg-config" ,pkg-config))) | ||||||
|  |     (home-page "https://irssi.org/") | ||||||
|     (synopsis "Terminal-based IRC client") |     (synopsis "Terminal-based IRC client") | ||||||
|     (description |     (description | ||||||
|      "Irssi is a terminal based IRC client for UNIX systems.  It also supports |      "Irssi is a terminal based IRC client for UNIX systems.  It also supports | ||||||
|  |  | ||||||
		Reference in a new issue