;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2017, 2018 Alex Kost ;;; Copyright © 208 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages tv) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages compression) #:use-module (gnu packages fontutils) #:use-module (gnu packages image) #:use-module (gnu packages linux) #:use-module (gnu packages pkg-config) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) (define-public tvtime (package (name "tvtime") (version "1.0.11") (source (origin (method url-fetch) (uri (string-append "https://linuxtv.org/downloads/tvtime/tvtime-" version ".tar.gz")) (sha256 (base32 "1367rl3n6qxwf30lqyz234zpb43s9xjhig3hrvbg7cbqcl8g4fs0")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-glibc-compatability (lambda _ (substitute* "src/get_media_devices.c" (("") "\n#include ")) #t))))) (inputs `(("alsa-lib" ,alsa-lib) ("libx11" ,libx11) ("libxext" ,libxext) ("libxt" ,libxt) ("libxtst" ,libxtst) ("libxinerama" ,libxinerama) ("libxv" ,libxv) ("libxxf86vm" ,libxxf86vm) ("libpng" ,libpng) ("libxml2" ,libxml2) ("freetype" ,freetype) ("zlib" ,zlib))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "http://tvtime.sourceforge.net") (synopsis "Television viewer") (description "Tvtime processes the input from your video capture card and displays it on a monitor. It focuses on a high visual quality.") (license license:gpl2+))) td>gnu: guile-ssh: Add "guile3.0-ssh" variant....* gnu/packages/ssh.scm (guile-ssh)[source]: Substitute 'GUILE_PKG' stanza in "configure.ac". * gnu/packages/ssh.scm (guile3.0-ssh): New variable. Ludovic Courtès 2019-11-23gnu: guile-ssh: Remove redundant phase....* gnu/packages/ssh.scm (guile-ssh)[arguments]: Remove 'autoreconf' phase, which was redundant with the 'bootstrap' phase. Ludovic Courtès 2019-11-13gnu: clusterssh: Update to 1.8.2....* gnu/packages/ssh.scm (clusterssh): Update to 1.8.2. Efraim Flashner 2019-11-08gnu: libssh: Update to 0.9.2....* gnu/packages/ssh.scm (libssh): Update to 0.9.2. Tobias Geerinckx-Rice 2019-11-03gnu: Add endlessh....* gnu/packages/ssh.scm (endlessh): New variable. Efraim Flashner 2019-10-27gnu: libssh: Update to 0.9.1....* gnu/packages/ssh.scm (libssh): Update to 0.9.1. Tobias Geerinckx-Rice 2019-10-01Merge branch 'master' into core-updatesLudovic Courtès 2019-09-29gnu: Remove deprecated "guile2.2-" packages....These had been deprecated since Dec. 2017. * gnu/packages/guile-xyz.scm (guile2.2-reader, guile2.2-lib) (guile2.2-minikanren, guile2.2-irregex, guile2.2-haunt) (guile2.2-redis, guile2.2-commonmark): Remove. * gnu/packages/guile.scm (guile2.2-json, guile2.2-gdbm-ffi): Remove. * gnu/packages/ssh.scm (guile2.2-ssh): Remove. * gnu/packages/tls.scm (gnutls/guile-2.2): Remove. Ludovic Courtès 2019-09-28gnu: libssh: Update to 0.9.0....* gnu/packages/ssh.scm (libssh): Update to 0.9.0. Of particular interest for robust offloading is libssh commit e4e51ccc1340e313c203842d0180a1c4e33c95cc, which fixes a bug whereby, instead of honoring the per-session timeout, 'ssh_channel_read_timeout' would end up passing an infinite timeout to 'poll': see <https://bugs.libssh.org/T33> Ludovic Courtès 2019-06-30gnu: libssh2: Update to 1.9.0....* gnu/packages/patches/libssh2-fix-build-failure-with-gcrypt.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. * gnu/packages/ssh.scm (libssh2): Update to 1.9.0. [source](patches): Remove. Marius Bakke